簡體   English   中英

如何根據div的大小隱藏文本字符

[英]How to hide text character according to size of div

我想根據 div 大小截斷文本

這是代碼片段:

 <div style="padding-left:10px; width:200px; border:1px solid #000000"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries </div>

這是我的輸出:

在此處輸入圖片說明

我希望我的輸出是這樣的:

在此處輸入圖片說明

謝謝你

 div { white-space: nowrap; /* new */ overflow: hidden; /* new */ text-overflow: ellipsis; /* new */ padding-left: 10px; width: 200px; border: 1px solid #000000; }
 <div>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries</div>

更多詳細信息:將省略號應用於多行文本

將以下樣式應用於您的 div。

div{
    padding-left: 10px;
    width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    border: 1px solid #000000;
    white-space: nowrap;
}

你需要給它一個高度並使用text-overflow: ellipsis;

你可以使用這個類。

.no-overflow {
  padding-left:10px; 
  width:200px; 
  border:1px solid #000000;
  height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM