yu.css.ui
Version:
纯CSS通用UI模块和组件
21 lines (20 loc) • 540 B
CSS
.yu-row {
width: 100%;
display: flex;
flex-wrap: wrap; }
.yu-row.align-top {
align-items: flex-start; }
.yu-row.align-middle {
align-items: center; }
.yu-row.align-bottom {
align-items: flex-end; }
.yu-row.justify-start {
justify-content: flex-start; }
.yu-row.justify-center {
justify-content: center; }
.yu-row.justify-end {
justify-content: flex-end; }
.yu-row.justify-space-between {
justify-content: space-between; }
.yu-row.justify-space-around {
justify-content: space-around; }