鼠标悬停显示隐藏省略文字
Posted maibao666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标悬停显示隐藏省略文字相关的知识,希望对你有一定的参考价值。
.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>
以上是关于鼠标悬停显示隐藏省略文字的主要内容,如果未能解决你的问题,请参考以下文章