.ellipsis1 {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.ellipsis2 {
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}
.ellipsis3 {
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
}
.flex_items_center {
display: flex;
align-items: center;
}
.flex_items_start {
display: flex;
align-items: flex-start;
}
.flex_items_end {
display: flex;
align-items: flex-end;
}
.flex_content_btw {
display: flex;
justify-content: space-between;
}
.flex_content_around {
display: flex;
justify-content: space-around;
}
.flex_content_center {
display: flex;
justify-content: center;
}
.flex_content_end {
display: flex;
justify-content: flex-end;
}
.flex_content_start {
display: flex;
justify-content: flex-start;
}
.flex_all_center {
display: flex;
align-items: center;
justify-content: space-between;
}
.flex_clm {
display: flex;
flex-direction: column;
}
.flex_res {
display: flex;
flex-direction: reverse;
}
.flex_warp {
display: flex;
flex-wrap: wrap;
}
.flex1 {
display: flex;
flex: 1;
}
网友评论