In CSS Grid, the property grid-template-columns: repeat(3, ________); can be used to create three columns of equal width.
- auto
- 1fr
- equal
- 100px
The correct option is 1fr. The repeat() function in conjunction with 1fr will create three columns of equal width. auto would not ensure equal width. equal is not a valid value. 100px would fix the columns to a specific width, not making them equal.
Loading...
Related Quiz
- The CSS function ______ allows you to perform arithmetic calculations directly within your stylesheets.
- To delay the start of a transition, you'd use the ________ property.
- In what scenario might the !important rule be considered bad practice?
- How do you define a CSS variable within a root element?
- In multi-column layouts, the ________ property defines the behavior of content flow at column breaks.