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

20 lines
390 B
CSS

.container1{
width: 400px;
height: 400px;
background-color: aqua;
display: flex;
justify-content: space-around;
/*
等分每个内部盒子的间距
*/
flex-wrap:wrap;
/* 实现多行显示 */
align-content: space-around;
/* 均匀分布项目 */
}
.inter{
width:120px;
height: 120px;
background-color: blue;
}