16 - Flexbox II
The following file is required for this lesson:
Demo Instructions
You can follow along with your instructor to complete this build and/or you can use this document as a guide in completing the demo build.
Steps
- Download the demo-flex-wrap.zip file and extract its contents to a folder called demo-flex-wrap.
- The result of this demo should look like:
- Calculate the width of each
<div>
in the<main>
using the following steps:
- Subtract the final right margin:
960 - 20 = 940
- Subtract the left margin of each <div>:
940 – 40 = 900
- Divide that result by 2:
900 / 2 = 450
- Calculate the width of the "black" <div>: Subtract left and right margins:
960 – 40 = 920
- Subtract the final right margin:
- In the css folder add the following code to the styles.css file:
- Style the <main> element:
- Style the <div> elements:
- Colour the first two <div> elements:
- Style the .full-width:
- Style the <main> element:
- Open the index.html file in your browser. If the result is different, make any necessary corrections, and refresh your browser.
- In your browser, open the developer tools and examine the widths of each of the
<div>
elements in the<main>
:
Exercise Instructions
There are two exercises related to this demo. Download the following exercise files from Moodle:
- ex-css-flex-4.zip
- ex-css-flex-5.zip
Complete the exercises as per the instructions on Moodle. Remember to calculate the <div>
widths using the Box Model.
Lab Instructions
Complete the Lab for this lesson and submit as per the instructions on Moodle.