如何使用 CSS 使 Firefox 断字?
到目前为止,这是我的代码:
<div style="width:100px;height:100px;background:red">
ssssssssssssssssssssssssssssssssssssss
</div>
但是,事实
word-wrap:break-word;
word-break:break-all;
证明没有用,因为它无法在 Firefox 上自动换行。 使用 CSS 我能做什么?
This is my code so far:
<div style="width:100px;height:100px;background:red">
ssssssssssssssssssssssssssssssssssssss
</div>
However,
word-wrap:break-word;
word-break:break-all;
does not prove useful, since it can't word-wrap on Firefox.
What can I do, using CSS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
上面的代码对我来说非常有用
The above piece of code works for me wonderfully
一起使用以下规则:
Use the following rules together:
您必须在 div 上应用以下 css 类:
并在 div 中绑定的表格上添加以下样式
它适用于 IE7、FF 3.6 和 Chrome。
You have to apply the below css class on div:
And add below style on table which is bind in div
It will work on IE7, FF 3.6 and Chrome.
您将宽度和显示属性与自动换行属性一起使用:
它在 IE 和 FF 中都适用于我。
you use width and display properties together with word-wrap property:
It works for me both in IE and in FF.
对于 Firefox,它的工作方式如下:
it works this way for Firefox:
这对我来说很好用:
看起来溢出换行是 Firefox 中的新功能。
更多信息可以在这里找到:
https://developer.mozilla。 org/en-US/docs/Web/CSS/overflow-wrap
That work for me nicely:
It looks overflow-wrap is something new in firefox.
More info can be found here:
https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap
我们试试这个怎么样:
Hows about we try this:
我需要几个答案的组合才能让它在 Chrome 和 Firefox 中工作:
I needed a combination of several answers to get it to work in both Chrome and Firefox for me:
word-break:break-word
已弃用。你应该使用:断字:正常;溢出换行:任何地方
word-break: break-word
is deprecated. You should use:word-break: normal; overflow-wrap: anywhere
它对我来说效果很好:
It works fine for me:
使用下面的样式,它在 mozilla firefox 中对我来说效果很好。
Use the below styles it worked fine for me in mozilla firefox.