字符超过长度将以省略号显示

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css">
.cutText{
  150px;
  height:24px;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  text-overflow: ellipsis;/* IE/Safari */
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;/* Opera */
  -moz-binding: url("ellipsis.xml#ellipsis");/*FireFox*/
}
</style>
</head>
<body>


<div class="cutText">蚂蚁部落欢迎您,只有奋斗才会有美好的明天!</div>


</body>
</html>

一分耕耘,一分收获
原文地址:https://www.cnblogs.com/sure2016/p/5081958.html