首页 > web前端 > css教程 > css white-space属性怎么用

css white-space属性怎么用

青灯夜游
发布: 2019-05-27 14:09:07
原创
5651 人浏览过

css white-space 属性用于设置如何处理元素内的空白,例设置white-space: nowrap,则换行及行首尾空格全部被合并,文本不会换行,文本会在在同一行上继续,直到遇到
标签为止。

css white-space属性怎么用

css white-space属性怎么用?

white-space 属性设置如何处理元素内的空白。

这个属性声明建立布局过程中如何处理元素中的空白符。

语法:

white-space : normal | pre | nowrap | pre-wrap | pre-line ;
登录后复制

属性值:

normal:默认。空白会被浏览器忽略。

pre:空白会被浏览器保留。其行为方式类似 HTML 中的

 标签。</p><p>nowrap:文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止。</p><p>pre-wrap:保留空白符序列,但是正常地进行换行。</p><p>pre-line:合并空白符序列,但是保留换行符。</p><p><strong>说明:</strong>值 pre-wrap 和 pre-line 是 CSS 2.1 中新增的。   </p><p>注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。</p><p><span style="font-size: 18px;"><strong>css white-space属性 示例</strong></span></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
	</head>

	<head>
		<style type="text/css">
			.box{
				width: 500px;
				border: 1px solid #000;
				margin-bottom:10px ;
			}
			.p1 {
				white-space: nowrap
			}
		</style>
	</head>

	<body>
		<div class="box">
			<p>
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
			</p>
		</div>
		<div class="box">
			<p class="p1">
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
				php中文网
			</p>
		</div>
		
	</body>

</html>
登录后复制

输出:

1.jpg

以上是css white-space属性怎么用的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
css
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板