超出宽度不换行,超出部分显示…
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
超出宽度自动换行
white-space: normal;
word-break: break-all;
样式效果图
html代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
* {
box-sizing: border-box;
}
.wrapper {
width: 500px;
margin: 20px auto;
}
.wrapper fieldset, .wrapper p {
margin-left: 90px;
}
</style>
</head>
<body>
<div class="wrapper">
<fieldset style="width: 320px">
<h4> 默认样式 </h4>
</fieldset>
<p style="width: 160px; background-color: #9ed5ff;">
这是一段文本文本文本文本文本文本文本文本abcdefghijklmnopqrstuvwxyz
</p>
<fieldset style="width: 320px">
<h4> 超出宽度不换行,超出部分显示... </h4>
</fieldset>
<p style="width: 160px; background-color: #9ed5ff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
这是一段文本文本文本文本文本文本文本文本abcdefghijklmnopqrstuvwxyz
</p>
<fieldset style="width: 320px">
<h4> 超出宽度自动换行 </h4>
</fieldset>
<p style="width: 160px; background-color: #9ed5ff; white-space: normal; word-break: break-all;">
这是一段文本文本文本文本文本文本文本文本abcdefghijklmnopqrstuvwxyz
</p>
</div>
</body>
</html>