Question: Use the following code below. You must use FlexBox and CSS Grid: * { font-family: sans-serif; font-size: 1.4em; } .container { height: 400px; display: flex;

Use the following code below. You must use FlexBox and CSS Grid:
* {
font-family: sans-serif;
font-size: 1.4em;
}
.container {
height: 400px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.row {
padding: 0;
margin: 0;
}
.box {
width: 200px;
height: 100px;
margin: 1px;
padding: 10px;
background-color: purple;
color: white;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
