Computer >> Máy Tính >  >> Lập trình >> CSS

Xác định cách báo hiệu nội dung tràn không được hiển thị cho người dùng bằng CSS

Thuộc tính tràn văn bản được sử dụng để xác định cách nội dung bị tràn không được hiển thị được báo hiệu cho người dùng bằng CSS.

Ví dụ

Bạn có thể thử chạy mã sau để triển khai thuộc tính tràn văn bản trong CSS:

<html>
   <head>
      <style>
         p.text1 {
            white-space: nowrap;
            width: 200px;
            border: 1px solid #000000;
            overflow: hidden;
            text-overflow: clip;
         }
         p.text2 {
            white-space: nowrap;
            width: 200px;
            border: 1px solid #000000;
            overflow: hidden;
            text-overflow: ellipsis;
         }
      </style>
   </head>
   <body>
      <b>Original Text:</b>
      <p>Tutorials Point originated from the idea that there exists a class of
      readers who respond better to online content and prefer to learn new skills at
      their own pace from the comforts of their drawing rooms.</p>
      <b>Text overflow:clip:</b>
     
      <p class = "text1">Tutorials Point originated from the idea that there exists
      a class of readers who respond better to online content and prefer to learn
      new skills at their own pace from the comforts of their drawing rooms.</p>
      <b>Text overflow:ellipsis</b>
     
      <p class = "text2">Tutorials Point originated from the idea that there exists
      a class of readers who respond better to online content and prefer to learn
      new skills at their own pace from the comforts of their drawing rooms.</p>
   </body>
</html>

Đầu ra

Xác định cách báo hiệu nội dung tràn không được hiển thị cho người dùng bằng CSS