thought this might be helpful...

liunx

Guest
Put this into the head section of your html code and it makes for some really nice text and paragraph alignments. (Causes the right side to be in a straight line.)<br />
<br />
<br />
<br />
<style><br />
body {font-family: arial, helvetica, sans-serif; font-size: 10pt;}<br />
p {font-family: arial, helvetica, sans-serif; text-align:justify; font-size: 10pt;}<br />
.short {font-family: arial, helvetica, sans-serif; text-align:left; font-size: 10pt;}<br />
td {font-family: arial, helvetica, sans-serif; font-size: 10pt;}<br />
a {text-decoration: none;}<br />
</style><!--content-->Unless I'm mistaken, the only thing there making your "right side to be in a straight line" is the second line:p {font-family: arial, helvetica, sans-serif; text-align:justify; font-size: 10pt;} Try putting your text in a <div> instead of <p> & see what happens.<br />
.short {font-family: arial, helvetica, sans-serif; text-align:left; font-size: 10pt;} does nothing on its own.<!--content-->That's a lot of overkill in the CSS and why were you using point units.<!--content-->
 
Back
Top