white-space属性
- normal:默认对文本的处理方式,文本自动处理换行,到达容器边界的内容会自动转到下一行。
- nowrap:强制在同一行内显示所有文本,直到文本结束或者文本后面有
标签。
举例代码
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
.white
{
width: 200px;
height: 200px;
background-color: #3dff48;
/*white-space: normal;*/
white-space: nowrap;
}
</style>
</head>
<body>
<div class="white">
<h3>
这是一行文字
这是一行文字
这是一行文字
</h3>
</div>
</body>
</html>
1.white-space:normal效果图
2.white-space:nowrap效果图