Files
web-learning/flex布局/container4.css
2024-03-20 20:54:41 +08:00

22 lines
416 B
CSS

.container4{
width: 400px;
height: 400px;
background-color: aqua;
display:flex;
justify-content: space-between;
}
.inter{
width: 120px;
height: 120px;
background-color: blue;
}
.first{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.second{
display: flex;
flex-direction: column;
justify-content: space-between;
}