InterviewSolution
Saved Bookmarks
| 1. |
Which of the following property specifies the order of a flexible item relative to the rest of the flexible items inside the same container?(a) sort(b) layout(c) order(d) asortThis question was posed to me at a job interview.My question is taken from CSS Miscellaneous Property topic in portion CSS Properties, Elements, Functions & Tables of CSS |
|
Answer» RIGHT option is (c) order For explanation I would say: The CSS order property specifies the order USED to LAY out flex items in their flex CONTAINER. ELEMENTS are laid out in the ascending order of the order value. |
|