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

19 lines
335 B
CSS

.container6{
width: 300px;
height: 300px;
display: flex;
background-color: aqua;
justify-content: space-between;
}
.inter{
height: 80px;
width: 80px;
background-color: blue;
}
.first,.second,.three{
display: flex;
flex-direction: column;
justify-content: space-between;
}