当前位置: 代码迷 >> HTML/CSS >> CSS 最终换行,兼容所有浏览器
  详细解决方案

CSS 最终换行,兼容所有浏览器

热度:134   发布时间:2012-10-31 14:37:31.0
CSS 终极换行,兼容所有浏览器


width: 100px; /* 必须定义宽度 */
word-break: break-word; /* 文本行的任意字内断开 */
word-wrap: break-word; /* IE */
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP printers */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: pre; /* CSS2 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  相关解决方案