Forum Moderators: not2easy
I haven't fully tested the whys and wherefores, i.e. which way works and which ways don't - has anyone else done this?
This is in IE6.
Example:
Using
<SPAN STYLE="text-align:justify;">
will not work.
But
<TD CLASS="justified">
linking to
TD.justified {text-align:justify;}
will work.
Why?
This property describes how inline content of a block is aligned.
Thus, it will only affect the contents of block level elements.
<SPAN STYLE="text-align:justify;display:block"> will work :)