gpt4 book ai didi

css3 自动换行 :break-word/break-all, 无连字符

转载 作者:行者123 更新时间:2023-11-28 18:31:18 33 4
gpt4 key购买 nike

CSS3 规范说部分支持 word-wrap:break-word; 在 Chrome 中你必须使用 word-wrap:break-all; 但是没有连字符。我正在使用 text-align:justify; 有没有想出一个解决方案来在 chrome 中的断字处使用连字符?

这个问题我见过几次,但还没有找到完整的解决方案。

这是我目前如何使用它的代码示例。

    .threecolumn {
-moz-column-width: auto;
-moz-column-count: 3;
-moz-column-gap: 20px;
-moz-column-rule-color: none;
-moz-column-rule-style: none;
-moz-column-rule-width: 0;
-webkit-column-width: auto;
-webkit-column-count: 3;
-webkit-column-gap: 20px;
-webkit-column-rule-color: none;
-webkit-column-rule-style: none;
-webkit-column-rule-width: 0;
column-width: auto;
column-count: 3;
column-gap: 20px;
column-rule-color: none;
column-rule-style: none;
column-rule-width: 0;
text-align: justify;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
word-wrap: break-word;
word-break:break-all; /* chrome, no hyphens :( */
}

jsFiddle

作品在 FF 和 Safari 中找到。

使用:火狐:17 Chrome :23 Safari :6.0.2

最佳答案

Google Chrome 不支持 CSS4“连字符”功能:http://generatedcontent.org/post/44751461516/finer-grained-control-of-hyphenation-with-css4-text

我刚刚询问过支持人员是否可以为该属性添加功能/支持。希望他们添加它............

关于css3 自动换行 :break-word/break-all, 无连字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14228351/

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