@tarojs/components
Version:
26 lines • 555 B
CSS
taro-text-core {
display: inline;
user-select: none;
}
taro-text-core[selectable=true], taro-text-core[user-select=true] {
display: inline-block;
user-select: text;
}
taro-text-core[space] {
white-space: pre-wrap;
}
taro-text-core[space=ensp] {
word-spacing: 0.5em;
}
taro-text-core[space=nbsp] {
word-spacing: 1em;
}
taro-text-core[number-of-lines] {
--line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
word-wrap: break-word;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: var(--line-clamp);
}