Files
ClassContent/历届学生/fontendseven/项目练习/上课项目/uniapp-tpl/less/mixins/index.less
2024-09-27 02:06:13 +08:00

19 lines
298 B
Plaintext

.no-scrollbar() {
&::-webkit-scrollbar {
display: none !important;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
opacity: 0 !important;
}
}
.ellipsis() {
white-space:nowrap;
text-overflow:ellipsis;
overflow:hidden;
word-wrap: break-word;
}