防止文本在HTML中溢出填充的容器

前端之家收集整理的这篇文章主要介绍了防止文本在HTML中溢出填充的容器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这种情况:
<div style="width: 100px; padding: 5px 15px 5px">Some text longer than 100px</div>

如果我设置溢出:隐藏在div上,文本仍然会在右边的15px填充区域外面:

++----------------------------+------+
++----------------------------+------+
||This text should stop here -| but i|
++----------------------------+------+
++----------------------------+------+

可以这样做,而不要在其中放置一个额外的元素来保存文本.任何浏览器中的任何解决方案都会做,我只想知道是否可能.

解决方法

您可以使用透明边框来制作所需的边距.不会溢出:
div {
    white-space: nowrap;
    overflow: hidden;
    max-width: 300px;
    border-left:1em solid transparent;
    border-right:1em solid transparent;
    text-overflow: ellipsis;
}
原文链接:https://www.f2er.com/html/224225.html

猜你在找的HTML相关文章