
Text overflows incorrectly...
IE docs include the following named entities you might try:
‎ left-to-right
‏ right-to-left
Then you can use the DIR attribute on an enclosing tag, like
<SPAN DIR="rtl">word1 word2</SPAN>
or on the BDO tag:
<BDO DIR="rtl">word1...</BDO>
I have never tried those, so I can not garantee they work (but they are
documented in the IE docs).
Otherwise, you can replace your spaces with , so that the text won't
be wrapped.
Quote:
> Hi,
> Those of you who have worked with "crowded" tables surely know the "text
> overflow" effect, where the following text:
> <td>word1 word2 word3 word4</td>
> Might get displayed as
> word1 word2
> word3 word4
> or even
> word1
> word2
> word3
> word4
> Now, the point is, what are you supposed to do if your document is in
> Hebrew, where letters and words are written from right to left? As you can
> imagine, the same sentence rewritten using Hebrew logic reads like this:
> <td>4drow 3drow 2drow 1drow</td>
> Naturally, you would have to reverse the overflow mechanism as well,
> otherwise the word order becomes distorted, so that you have to read from
> bottom to top:
> 4drow 3drow
> 2drow 1drow
> 4drow
> 3drow
> 2drow
> 1drow
> Since I've never dealt with Hebrew output before, I'm quite clueless as to
> what kind of a workaround would be applicable here. I can manipulate the
> HTML as it gets output, but what kind of manipulation that would be? Will
an
> autonomic shift of Logical/Visual encoding suffice?
> Any ideas will be highly appreciated,
> Thanks in advance,
> Benjamin