- I am learning how to use the CSS display: flexproperty to control how elements are positioned
- I can describe the difference in behavior between display: blockanddisplay: inlineelements
- I can set display: flexon a container element to create a flex container
- I can use flex-direction,justify-content, andalign-itemsto control how child elements are positioned
- Install Live Server and Go Live to view how the webpage looks with no styling
- Follow directions below
container {
    display: flex;
    flex-direction: row | column;
    justify-content: start | end | center | space-around | space-between | space-evenly;
    align-items: start | end | center | stretch;
    flex-wrap: wrap | nowrap;
}- Open assignment.htmlin your browser andassignment.cssin your editor.
- Set each container selector to have display: flex
- Add flex properties to each container selector to style them to look like the images. DO NOT CHANGE ANY OTHER CSS PROPERTIES





