关于容器滚动与强制剪切或换行.
容器的自动滚动:
div{max-height:350px; overflow:auto;}
仅竖向滚动,强制剪切横向
div{max-height:350px; overflow:auto;overflow-x:hidden;}
IE6不支持max-height:
*html div{ height:350px; }
IE强制换行:
word-wrap: break-word;
内容将在边界内换行。如果需要,词内换行( word-break )也将发生
word-break: break-all;
允许非亚洲语言文本行的任意字内断开
上一篇
下一篇

文章来自:
Tags: