Files
xiezheng_h5/css/tool/utils.css
bmy 4991b3686c
All checks were successful
continuous-integration/drone/push Build is passing
hahah
2024-12-03 11:18:07 +08:00

69 lines
727 B
CSS

/* 公共的css方法 */
.flex {
display: flex;
}
.ais {
align-items: center;
}
.jc {
justify-content: center;
}
.js {
justify-content: space-between;
}
.ja {
justify-content: space-around
}
.wrap {
flex-wrap: wrap;
}
.flex1 {
flex: 1
}
.column {
flex-direction: column;
}
.fixed {
position: fixed;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.border-box {
box-sizing: border-box;
}
.p15{
padding: 0 var(--f15);
}
.p25{
padding: 0 var(--f25);
}
.ellipsis {
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
.header_title {
color: var(--textColor);
font-size: var(--f16);
margin: 0 .16rem;
}