Files
web-learning/flex布局/container5.css
2024-03-20 20:55:57 +08:00

28 lines
518 B
CSS

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