Fully Justified Text
A normal HTML page contains mostly text which has been left justified. This means that the text all lines up at the left of the screen but is ragged and does not line up on the right hand edge of the screen. Occasionally you might find some text that is right justified instead or even centred. Right justified text is lined up on the right hand side of the screen but is ragged at the left of the screen while centred text is ragged at both sides of the screen but has the text precisely centred.
You might notice something different about the paragraphs that appear on this page. That's right, the text is perfectly aligned on both the left and right sides of the screen and there is no ragged edge. This is what is called fully justified text and it is as easy to achieve as right or centre justified text is. If you just want to apply full justification to one paragraph then add align="justify" to the paragraph tag. The paragraph is now fully justified and the ragged edge at the right of the screen will be straightened.
Alternatively if you want to align several paragraphs all in one go then precede the entire block of text with <div align="justify"> and follow it with </div> and all of the paragraphs contained within the div tags will be fully justified.
Note that Netscape 4 does not recognise this alignment command and will therefore still display the text left justified with a ragged edge at the right of the screen. Other earlier browser versions may do the same.


