|
Here´s a bit more CSS scripting, from the web-design newsgroup. This one will “block justify” (that´s left-and-right-justify) text using Cascading Style Sheets - HTML by itself can´t do this, but CSS can. (mpl) -
From: Luca Andreucci <andrew@andrew.org> Subject: Text Justify in NOF Text Boxes
- Enable CSS rendering (at least) for the page you´re working on.
- Make a text box of your choice
- Right-Click on the text box and select “Object HTML”
- Enter this code into the “Before Tag” field:
|
<style type="text/css"> <!-- P {text-align: justify} --> </style>
|
|
This should work with IE 4.x and Netscape Communicator 4.5 (although, according to Luca, pre-4.5 Netscape browsers may have problems with this CSS tag - Your Mileage May Vary :)
|