hae
Version:
Mobile web UI based on Vux
24 lines (23 loc) • 479 B
text/less
.ellipsis(@w:auto) {
width: @w;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.ellipsisLn(@line) {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: @line;
}
.text_wrap() {
word-wrap:break-word;
word-break:break-all;
}
.hyphens() {
word-wrap:break-word;
-webkit-hyphens:auto;
hyphens:auto;
}