之前一直以为单行文本溢出追加省略号没法兼容所有浏览器,经元泉同志提点,顺利解决:
.box { width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
样式代码,四个属性都是必须的,并且宽度必须设在当前容器上,父容器定宽无效:
测试 IE6、IE7、IE8、IE9、Chrome、Firefox 均支持。
<!DOCTYPE HTML><html><head><meta charset="utf-8"><title>text overflow ellipsis - wfuyu.com</title><style>.box {width: 200px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}</style></head><body><h1>text overflow ellipsis</h1><div class="box">测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试</div></body></html><div style="text-align:center;margin:30px 0 0 0;"><hr style="color:#999;height:1px;">如不能显示效果,请按Ctrl+F5刷新本页,更多网页代码:<a href='http://www.wfuyu.com/' target='_blank'>http://www.wfuyu.com/</a></div>提示:可修改后代码再运行!
上一篇 Access数据库技术(18)
下一篇 利用jQuery插件打造简洁的回到顶部按钮