43 lines
549 B
CSS
43 lines
549 B
CSS
.boxl{
|
|
width: 88%;
|
|
height:200px;
|
|
background-color:red;
|
|
|
|
margin: 0 auto;
|
|
}
|
|
|
|
|
|
|
|
|
|
.box2{
|
|
width: 88%;
|
|
height:200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.box2 div{
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: salmon;
|
|
}
|
|
|
|
.box3{
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.box3 div{
|
|
width: 40%;
|
|
height:150px;
|
|
background-color:rgb(27, 179, 90);
|
|
|
|
margin: 0 auto;
|
|
} |