CSS grid introduced a new length unit, fr, to create flexible grid tracks. Referring to the code sample below, what will the widths of the three columns be?css.grid { display: grid; width: 500px; grid-template-columns: 50px 1fr 2fr;}

🎲 Try a Random Question  |  Total Questions in Quiz: 114  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
CSS Quiz — practice the complete quiz, review flashcards, or try a random question.

CSS MCQs For LinkedIn Skill Assessments.


CSS grid introduced a new length unit, fr, to create flexible grid tracks. Referring to the code sample below, what will the widths of the three columns be?<br>css<br>.grid {<br> display: grid;<br> width: 500px;<br> grid-template-columns: 50px 1fr 2fr;<br>}<br>