37 lines
664 B
CSS
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;
|
|
} */ |