CSS white-space 属性
描述
white-space 属性用于改变用户代理在元素中处理空白的方式。
可能的值
- normal − 元素内的任何空白序列都被转换为一个空格。
-
pre − 对元素中的所有空白都进行保留,包括多个空格和换行符。
-
nowrap − 元素内的任何空白序列都被转换为一个空格,但禁用了单词换行。
适用于
所有块级元素。
DOM 语法
object.style.whiteSpace = "pre";
示例
以下是一个示例,演示了如何处理元素内部的空白。
<html>
<head>
</head>
<body>
<p style = "white-space:pre;">
This text has a line break and the white-space pre setting
tells the browser to honor it just like the HTML pre tag.
</p>
</body>
</html>
这将产生以下结果−