【CSS】单、多行文本溢出时显示省略号
单行文本.ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }多行文本.ellipsis-multi { display: -webkit-box; -w...
单行文本.ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }多行文本.ellipsis-multi { display: -webkit-box; -w...
.dashed { width: 100px; height: 1px; background: linear-gradient(to right, #000, #000 5px, transparent 5px, transparent); backgroun...
向上纯色div { width: 0; height: 0; border-width: 0 40px 40px; border-style: solid; border-color: transparent transparent red; }向上,带...
.loader { border: 10px solid #f3f3f3; border-radius: 50%; border-top: 10px solid #3498db; width: 80px; height: 80px; -webki...
.box{ width:300px; line-height: 300px; font-size: 16px; } .box img{ width: 30px; height:30px; vertical-align:middle } .box span{ ...
禁止文字选取*:not(input,textarea) { -webkit-user-select:none; user-select:none; -webkit-tap-highlight-color:rgba(255,0,0,0); }禁止移动端选中时的高亮状态bo...