上传文件至 flex布局

This commit is contained in:
2024-03-20 20:54:41 +08:00
parent ce61fd6ca6
commit 3091c6108e
5 changed files with 93 additions and 0 deletions

20
flex布局/contain1.css Normal file
View File

@@ -0,0 +1,20 @@
.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;
}