1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <style> .container { width: 200px; overflow: hidden; white-space: nowrap; }
.text { display: inline-block; width: 100%; direction: rtl; text-overflow: ellipsis; overflow: hidden; text-align: left; } </style> <div class="container"> <span class="text">短文本不会被省略</span> </div>
<div class="container"> <span class="text">这是一段很长的文本,左侧会被省略</span> </div>
|