admin管理员组文章数量:1322850
I've got something like this.
<div class="someclass">
<label data-fieldid="191366" data-val="159" class="evLabel form-control">
Some Long Text
</label>
</div>
I made it so, that if the text is too long than the overflow hides by writing text-overflow:elipsis
, overflow: hidden
, and white-space:nowrap
.
I need to make it show tooltip-ish popup with the entire text (Some Long Text) on hover and possibly when it does know when this elipsis
is actually hiding something (So, when it is necesary). How to do something like that?
I've got something like this.
<div class="someclass">
<label data-fieldid="191366" data-val="159" class="evLabel form-control">
Some Long Text
</label>
</div>
I made it so, that if the text is too long than the overflow hides by writing text-overflow:elipsis
, overflow: hidden
, and white-space:nowrap
.
I need to make it show tooltip-ish popup with the entire text (Some Long Text) on hover and possibly when it does know when this elipsis
is actually hiding something (So, when it is necesary). How to do something like that?
- What did you try regarding the tooltips? – Dekel Commented May 11, 2017 at 11:03
2 Answers
Reset to default 3If you need modification in this, please ment. You can also check this LINK
div {
line-height: 20px;
}
#data {
width: 100px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#data:hover {
overflow: visible;
white-space: normal;
width: auto;
position: absolute;
background-color: #FFF;
}
#data:hover+div {
margin-top: 20px;
}
<div>1: ONE</div>
<div id="data">2: Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two Two </div>
<div>3: THREE</div>
<div>4: Four</div>
Try the Below code example :
label {
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
white-space: nowrap;
width: 50px;
}
<label for="x" title="Long Long Long ............... Text">Long Long Long ............... Text</label>
本文标签: javascriptShow text overflow in the form of a tooltipStack Overflow
版权声明:本文标题:javascript - Show text overflow in the form of a tooltip - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742112131a2421302.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论