CSS3相关效果整理

来源:互联网 发布:如何连接网络投影仪 编辑:程序博客网 时间:2024/05/16 02:47

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 :  当对象内文本溢出时显示省略标记(...)



2. 如何用CSS画三角形。(利用border属性)
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;//左下角