1、text-overflow
属性 | 描述 |
---|---|
clip | 修剪文本。 |
ellipsis | 显示省略符号来代表被修剪的文本。 |
2、实例演示
源代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>测试文本溢出包含盒子</title>
<style type="text/css">
.text1{
text-overflow: ellipsis;
white-space:nowrap;
width:12em;
overflow:hidden;
border: 1px solid red;
display: block;
}
.text2{
margin-top: 10px;
text-overflow: clip;
white-space:nowrap;
width:12em;
overflow:hidden;
border: 1px solid red;
display: block;
}
</style>
</head>
<body>
<div class="text1">测试文本溢出包含盒子,测试文本溢出包含盒子</div>
<div class="text2">测试文本溢出包含盒子,测试文本溢出包含盒子</div>
</body>
</html>
运行效果: