Suppose you want to have a list of items (.item) displayed in a row and in reverse order using flexbox. What is the error in the CSS below?css.container { display: flex;}.item { border: 1px solid red; flex-direction: row-reverse;}

🎲 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.


Suppose you want to have a list of items (.item) displayed in a row and in reverse order using flexbox. What is the error in the CSS below?<br>css<br>.container {<br> display: flex;<br>}<br>.item {<br> border: 1px solid red;<br> flex-direction: row-reverse;<br>}<br>