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) asort |
|
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. |
|