12_文字溢出处理.html 766 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 200px;
  10. height: 100px;
  11. border:3px dashed black;
  12. /* 控制文字不换行 */
  13. white-space: nowrap;
  14. /* 超出部分隐藏 */
  15. overflow: hidden;
  16. /* 文字超出部分省略号显示 */
  17. text-overflow: ellipsis;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box">
  23. 在线链接服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。
  24. </div>
  25. </body>
  26. </html>