chrome css bug 文本在超出宽度时不会中断
在 Chrome 中,我遇到一个错误,当文本达到其包含元素的完整宽度时,文本不会断行两行。
看看我的fiddle,你就会明白我的意思。文本位于营销服务的子导航上方,而在 FF 中,较长的导航标题会超出行数。
In chrome I am having a bug where text is not breaking on two lines when it reaches the full width of it's containing element.
Take a look at my fiddle and you will see what I mean. The text is over the hanging the sub nav, of marketing services, where as in FF the longer nav titles are breaking onto too lines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
链接的宽度大于列表项的宽度。这就是为什么文本似乎脱离了下拉菜单。
如果将其减小到与
li
相同的大小(或指定 100%),它就可以工作。The link's width is bigger than the list item's. That's why text seems to break out of the dropdown menu.
If you reduce it to the same size as the
li
(or specify 100%), it works.