View Full Version : Text Alignments


Only1Joe88
01-17-2003, 12:26 PM
Is there anyway to make the Text on your website fit to the size of the window/table it's in? Like Stretch to the size of the frame of the table.

the_dark_one02
01-17-2003, 03:22 PM
well i understand what you mean and i use percentages .e.g

<html>
<body>
<table width="97%">
<tr>
<td width="200"><!-- this is my navbar which i want to be 200 pixels no matter the size of the window-->
</td>
this is the text you want on your page, dont use the <br/> tag then it should make a new line where ever needed.
<td>
</td>
</tr>
</table>
</body>
</html>