You're creating a magazine-style layout with text flowing into multiple columns. As the viewport width increases, you want to add more columns while ensuring that each column does not exceed 250px in width. Which CSS properties would you adjust?

  • column-count and column-width.
  • max-width and min-width.
  • grid-template-columns and grid-template-rows.
  • overflow-x and overflow-y.
To achieve this, you should adjust the column-count and column-width CSS properties. column-count controls the number of columns, and column-width ensures that each column does not exceed a specified width (in this case, 250px).
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *