码迷,mamicode.com
首页 > Web开发 > 详细

css实现文本超出li宽度的部分隐藏

时间:2015-12-29 06:18:32      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:

css实现文本超出li宽度的部分隐藏:
在某些实际应用中,希望把文本超出的部分隐藏而非换行,下面就是一段这样的代码实例,大家可以参考一下。
代码如下:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<title>蚂蚁部落</title> 
<style type="text/css"> 
#content{
  width:130px;
  height:80px;
  background-color:green;
  white-space:nowrap;
  text-overflow:ellipsis; 
  overflow:hidden;
}
</style> 
</head> 
<body> 
<div id="content">蚂蚁部落欢迎您,只有奋斗才会有美好的明天</div>
</body> 
</html>

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=9681

更多内容可以参阅:http://www.softwhy.com/divcss/

css实现文本超出li宽度的部分隐藏

标签:

原文地址:http://www.cnblogs.com/zhengzebiaodashi/p/5084507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!