css3實現的擷取字串省略號替代

admin發表於2017-02-24
本章節分享一段程式碼例項,它利用css3實現了擷取字串的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.ui-nowrap {
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
</style>
</head>
<body>
<div class="ui-nowrap">
  本站的url地址是softwhy.com。
</div>
</body>
</html>

相關文章