直接看代碼:html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>desktop demo</title> <style> .app { width: 400px; height: 28px; line-height: 28px; margin: 50px 0 0 50px; border: 1px solid red; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } </style> </head> <body> <div class="app"> <span class="content">你問我爲什麼時常沉默,有的人無話可說,有的話無人可說.你問我爲什麼時常沉默,有的人無話可說,有的話無人可說.</span> </div> </body> </html>
果圖:
app
關鍵點:spa
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;