Files
juipvue/static/css/layout.css
wanyongkang 3193537726 初始提交
2020-10-04 10:30:08 +08:00

37 lines
664 B
CSS

.layout-tr-top,
.layout-tr-between,
.layout-tr-center,
.layout-tr{
display:flex;
align-items: center;
}
.layout-tr-top{
align-items: flex-start;
}
.layout-tr-center{
justify-content: center;
}
.layout-tr-between{
justify-content: space-between;
}
.layout-td{
flex:1;
}
.layout-box::after{
content:'';
display:table;
clear: both;
}
.glb-text-of{
width:100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
/* .glb-text-clamp{
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
} */