[历史归档]本文原发布于 cstriker1407.info 个人博客,内容为历史存档,仅供参考。
发布时间:2019-05-04| 标题:CSS white-space 属性|分类:编程 / web / html |标签:css
CSS white-space 属性
参考链接
【 https://www.w3school.com.cn/cssref/pr_text_white-space.asp 】
【 https://www.w3school.com.cn/tiy/t.asp?f=csse_text_white-space 】
white-space 属性设置如何处理元素内的空白和回车。
默认值:
normal
可选值:
| 值 | 描述 |
|---|---|
| normal | 默认。空白会被浏览器忽略。 |
| pre | 空白会被浏览器保留。其行为方式类似 HTML 中的标签。 |
| nowrap | 文本不会换行,文本会在在同一行上继续,直到遇到 标签为止。 |
| pre-wrap | 保留空白符序列,但是正常地进行换行。 |
| pre-line | 合并空白符序列,但是保留换行符。 |
| inherit | 规定应该从父元素继承 white-space 属性的值。 |
简单实例:
normal:
pre:
nowrap:
pre-wrap:
pre-line:
inherit: