CSS文字超出長度用省略號替代

admin發表於2018-07-12

分享一段程式碼例項,它利用css實現了擷取超長的字串的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html> 
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<title>螞蟻部落</title>
<style type="text/css"> 
.thediv{ 
  width:250px;
  height:30px;
  line-height:30px;
  overflow:hidden; 
  white-space:nowrap;
  text-overflow:ellipsis;
  background-color:red
} 
</style> 
</head> 
<body> 
<div class="thediv">螞蟻部落歡迎您,只有奮鬥才會有美好的明天!</div>
</body> 
</html>

可以擷取字串,並且多餘的以三個點表示,如要使用瞭如下程式碼:

[CSS] 純文字檢視 複製程式碼
overflow:hidden; 
white-space:nowrap;
text-overflow:ellipsis;

特別說明:不能少了overflow:hidden,否則無效。

相關閱讀:

(1).white-space屬性參閱CSS white-space一章節。 

(2).text-overflow屬性參閱CSS text-overflow一章節。 

相關文章