当前位置: 首页 > 网络学院 > 网页制作基础教程 > CSS > CSS white-space属性
The white-space property sets how white-space inside an element is handled.
white-space 属性设置应该如何处理在元素内的空隙。
Inherited: Yes
继承性:有
p { white-space: normal } |
值 | 描述 |
---|---|
normal | White-space is ignored by the browser 浏览器将忽视空隙。 |
pre | White-space is preserved by the browser. Acts like the <pre> tag in HTML 空隙会被浏览器所保留。效果就类似于HTML中的<pre>标签 |
nowrap | The text will never wrap, it continues on the same line until a <br> tag is encountered 文字不会自动换行,它会在一行上显示,直到出现换行标签 |