I'm writting a simple paragraph in both English and Japanese, using only HTML and CSS. The English text breaks lines normally (when a word doesn't fit on a line anymore, it's pushed to the next one).

With Japanese though, not a whole word is pushed to the next line, but part of it only. I've tried setting word-wrap to break-word and normal, but nothing changes (with the Japanese text).

How to I make whole words in Japanese jump to the next line like it happens in English?

link|improve this question
feedback

2 Answers

English separates words with spaces, Japanese doesn't.

Whether characters in Japanese form a word or not depends on context. In many cases, looking for certain grammatical (Kana) particles could be used to separate words - but this wouldn't even be close to being reliable.

Essentially, you'd need a Japanese dictionary / understanding of the language to identify where the words start and end - a browser won't know how to do this.

Alternatively, if you know the start and end of the words, you could perhaps wrap each one in a span - then use CSS to ensure each span wraps to a new line as a whole when it doesn't fit.

link|improve this answer
1  
I can't think of a better answer. – Truth Apr 29 at 20:51
feedback

try setting the css property

line-break:strict;

Check it out here.

link|improve this answer
Thank you for your answer, but unfortunately the problem persists (nothing changed). – Rodrigo Bezerra Mar 10 '11 at 9:14
@Rodrigo Bezerra Sorry I couldn't help you out. – moriartyn Mar 10 '11 at 16:02
It was a good try though :) – Truth Apr 29 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.