文本超出点点
<style type="text/css"> .divBox{ width: 200px; height: 100px; margin: 0 auto; background-color: pink; overflow: auto; } .item{ width: 100%; height: 30px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } </style> <body> <div> <div class="divBox"> <div class="item">123555555555555555555555555566666666666666667777777777777777777777</div> </div> </div> </body>
原文:https://www.cnblogs.com/sun-wt/p/11597642.html