如下代码
width: 100%; height: 40px; position: fixed; left: 0px; right: 0px;
max-width: 810px; margin:0 auto; text-align: center; background-color: #F2F2F2;
width: 100%; height: 40px; position: fixed; left: 0px; right: 0px;
max-width: 810px; margin:0 auto; text-align: center; background-color: #F2F2F2;
在使用富文本编辑器编辑文章内容时,经常会用到<pre>元素,下面的CSS帮助解决<pre>元素内的文字不会自动换行,而“撑破”页面的情况:
pre{ white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word; }