鼠标悬停显示隐藏省略文字
时间:2019-12-20 11:33:44
收藏:0
阅读:85
.title_content{
font-size:14px;
margin: 10px 5px;
text-overflow:ellipsis;
overflow:hidden;
white-space:nowrap;
}
.title_content:hover{
text-overflow:inherit;
overflow: visible;
white-space: pre-line;
}
<div class=‘title_content‘>隐藏ellipsis</div>
原文:https://www.cnblogs.com/maibao666/p/12072168.html
评论(0)