css-layout-classes Flashcards
1
Q
Why do two div elements “vertically stack” on one another by default?
A
div are block level element, default display block. automatically take up entire width of page. they will automatically stack vertical
2
Q
What is the default flex-direction of an element with display: flex?
A
row
3
Q
What are the three primary components of a page layout? (Which helper classes do you need?)
A
row column container
4
Q
What is the minimum number of columns that you should put in a row?
A
1
5
Q
What is the purpose of a container?
A