Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

css - CSS3 Automatic Word Hyphenation works on FireFox, not on Internet Explorer and Chrome

According to this link not only FireFox but also Internet Explorer should support the use of automatic hyphenation in css/html, however my demo (using the Dutch language, which is supported by IE).

SEE MY CSS DEMO where hyphenation does work flawlessly on FF 42 but not on current IE 11 while it should be supported. What am I doing wrong? Below the css and html i'm using.

article p{
    -webkit-hyphens : auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

<article lang="nl">
<p>........</P>
</article>

What am I doing wrong? What part of this css code needs to be changed sothat auto hyphenation works on Internet Explorer as well on the Dutch (nl) language?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I had the same problem until I used lang="en" inside the <html> tag, so setting your lang attribute will allow these browsers to actually hyphenate with your language.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...