gpt4 book ai didi

css - 包装不同浏览器的文本溢出?

转载 作者:行者123 更新时间:2023-11-28 13:29:28 25 4
gpt4 key购买 nike

HTML

<div class="text-wrapper">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>

CSS

.text-wrapper{
width:100px;
height:45px;
overflow:hidden;
float:left;
border:1px solid #CCC;
}

它在 firefox 上看起来像两行一样流畅,但是如果我用 chrome 或 ie9 打开页面似乎是两行和第三行的上半部分。我该如何解决这个问题?屏幕截图 Firefox - Chrome - IE9

Firefox Screenshot Chrome Screenshot ie9 screenshot

最佳答案

如果你想像下面这样灵活地使用高度:

.text-wrapper{
width:100px;
height:auto;
overflow:hidden;
float:left;
border:1px solid #CCC;
}

example

关于css - 包装不同浏览器的文本溢出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13719745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com