text-overflow: ellipsis;
文本溢出隐藏
效果图:
代码:
.father{width:500px;}
.words{
font-size: 15px;
line-height: 15px;
color: #333;
display: block;
width: 100%;
height: 15px;
overflow: hidden;
text-overflow: ellipsis;
}
<div class="father">
<div class="words">Email</div>
</div>
以上就是关于“ text-overflow: ellipsis; 文本溢出隐藏 ” 的全部内容。