代码改变世界

CSS 小记

  音乐让我说  阅读(128)  评论(0编辑  收藏  举报

1. 带各种漂亮颜色边框的 DIV,请看下面的效果:

2. Span 中的内容超过长度自动隐藏

   

复制代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <style type="text/css">
        .fl { float:left;  }
        .w_50 { width:50px; }
        .t_elli{ text-overflow:ellipsis; white-space:nowrap; word-wrap:normal; overflow:hidden; }
    </style>
</head>
<body>
<!-- Span 中的内容超过长度自动隐藏 -->
<div>
    <span class="fl w_50 t_elli">Hello World</span>
</div>    
</body>
</html>
复制代码

 

3.

谢谢浏览!

点击右上角即可分享
微信分享提示