1.过长省略
white-space:nowrap;/*为应用text-overflow做准备,禁止换行*/
overflow:hidden;/*为应用text-overflow做准备,禁止文本溢出显示*/
text-overflow:ellipsis;/*兼容IE,Safari(Webkit)*/
-o-text-overflow:ellipsis;/*兼容Opera*/
-moz-binding:url('ellipsis.xml#ellipsis');/*兼容firefox*/
备注:
text-overflow : clip | ellipsis
参数:
clip : 不显示省略标记(...),而是简单的裁切(clip这个参数是不常用的!)
ellipsis : 当对象内文本溢出时显示省略标记(...)
border:50px solid #000;
border-color:#f00 transparent transparent transparent;
border-style:soliddashed dashed dashed; width:1px;
3.圆角
-moz-border-radius:10px;
webkit-border-radius:10px;
border-radius:10px;
4.阴影:
Text-shadow:0.1em 0.1em #333;//右下角
Text-shadow:-0.1em-0.1em #333;//左上角
Text-shadow:-0.1em 0.1em #333;//左下角