WebKit 连字符
有人能够在 WebKit 浏览器中成功实现连字吗?我尝试过 CSS3 hyphenation
样式以及 -webkit-hyphens: auto
。两者都没有骰子。或者也许我做错了什么?
注意:我只在 Mac 上尝试过 Safari 和 Chrome。
更新:代码示例
<html>
<head>
<style>
div {
-webkit-hyphens: auto;
}
</style>
</head>
<body>
<div style="width: 150px; border: solid 1px black;">
<p>Anaideia, spirit of ruthlessness, shamelessness, and unforgivingness</p>
<p>Supercalifragilisticexpialidocious, Antidisestablishmentarianism, Floccinaucinihilipilification, Hippopotomonstrosesquipedaliophobia</p>
</div>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
-webkit-hyphens 在 iOS 4.2 及更高版本上运行良好,并且在 webkit nightlies 中得到部分支持。
Webkit:
iOS 4.3:
-webkit-hyphens works fine on iOS 4.2 and above, and is partially supported in the webkit nightlies.
Webkit:
iOS 4.3:
它可以在 Safari 中运行(在 OS X Lion 上使用 Safari 5.1 进行测试,在 iPad 上使用 Safari 移动版进行测试),但尚不能在 Chrome 中运行。请参阅 http://caniuse.com/css-hyphens 了解连字符浏览器支持。
以下是 320 及以上项目中段落的样式 (http://www.stuffandnonsense.co .uk/projects/320andup/):(
最后一行适用于 Firefox)
因此,浏览器中合理的文本是一个很大的禁忌,但正在慢慢成为现实。
It works in Safari (tested with Safari 5.1 on OS X Lion, and Safari mobile on iPad), not with Chrome yet. See http://caniuse.com/css-hyphens for hyphens browser support.
Here is how paragraphs are styled in the 320 and up project (http://www.stuffandnonsense.co.uk/projects/320andup/):
(last line is for Firefox)
So justified text in browsers which was a big no-no is slowly becoming a reality.
更好的日子即将到来..浏览 编辑工作草案 - 在提供的实例中,我认为未来更好的属性将是“overflow-wrap:”。 “连字符:”确实更适合一般格式要求,而溢出换行则适用于需要中断的过长单词的紧急情况。最好的价值是
,唉,overflow-wrap 似乎在 iphone 或 firefox 上还没有以任何方式得到支持,而且overflow-wrap:hyphenate 甚至不在工作草案中。 (悲伤的表情)
Better days are coming.. After browsing the Editors working draft - In the instance provided I think the better property in future would be 'overflow-wrap:'. 'hyphens:' is really more suited to general formatting requirements, whereas overflow-wrap is for the emergency cases of overly long words that require breaking. The best value would be
Alas overflow-wrap doesen't seem to be supported in any way just yet on the iphone or firefox, and overflow-wrap:hyphenate isn't even in the working draft. (sadface)