Files
ClassContent/历届学生/苏琪/项目练习/newApp/appFont/common/less/lib/mixin.less
2024-09-27 02:06:13 +08:00

27 lines
512 B
Plaintext

// 弹性盒子 水平垂直居中
.alineCenter{
display : flex;
justify-content: center;
align-items: center;
}
// 弹性盒子 多元素垂直居中
.verticalCenter{
display: flex;
flex-flow: column;
align-items: center;
}
// 弹性盒子 单行元素水平居中
.levelCenter{
display: flex;
align-items: center;
}
// 设置下边线
.undeLine(@backgroundColor,@bottom){
content: "";
width: 100%;
height: 2upx;
background-color: @backgroundColor;
position: absolute;
left: 0;
bottom: @bottom;
}