CSS 超出部分显示省略号

直接看代码: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;
相关文章
相关标签/搜索