This commit is contained in:
魏啾
2024-04-30 18:07:59 +08:00
parent b72c4d7af1
commit 56863dd624
1369 changed files with 156460 additions and 0 deletions

61
common/css/flex.css Normal file
View File

@@ -0,0 +1,61 @@
.flex-center{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.flex-start{
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
}
.flex-end{
display: flex;
justify-content: flex-end;
align-items: center;
flex-wrap: wrap;
}
.flex-colum{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.flex-colum-start{
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.flex-colum-end{
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
}
.flex-between{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.flex-around{
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
.flex_column_around{
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: flex-start;
flex-wrap: wrap;
}
.flex_column_aroundflex_start{
display: flex;
flex-direction: column;
justify-content: space-around;
flex-wrap: wrap;
}