CSS截取标题...

CSS样式:

display:block; width:100%; word-break:keep-all; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;

说明:

1、内联元素需加:display:block;

2、兼容IE6溢出及省略号问题需设定指定宽度:width:100%;

3、word-break:keep-all; white-space:nowrap;两者表示不换行

4、overflow:hidden;内容超出宽度时隐藏超出部分的内容

5、text-overflow:ellipsis;当对象内文本溢出时显示省略标记(...)

6、在table中使用,记得给table加上样式table-layout:fixed;

posted @ 2013-05-10 16:16  yuejin  阅读(204)  评论(0编辑  收藏  举报