Why do my tables "ReSize" ?

liunx

Guest
Hey Guys,<br />
<br />
I'm having a slight problem with the tables on my webpage that I am coding. I have tables, and columns in the table, but the problem is whenever I try to type text in any of the columns, the table seems to automatically resize itself. How can I stop this? Below is the link to see my page, see if you can fix the problem, by posting the fixed code here.... thanks :)<br />
<br />
<!-- m --><a class="postlink" href="http://www.everlasting-misery.com/christopher/Outwit10/index.html">http://www.everlasting-misery.com/chris ... index.html</a><!-- m --><br />
<br />
I'd really appreciate some help :)<!--content-->well, uh... you're using percentages. those tend to resize. they're very rubbery.<br />
<br />
also,<br />
<br />
26% +<br />
329% +<br />
65% +<br />
163% +<br />
25%<br />
≠101%<br />
(more like 608%)<!--content-->if you're going to fill it all up with text, and you want the data cells to remain fixed in width, you may as well use fixed widths, i.e., "100" rather than "25%" and so on. the only problem with fixed widths is that sites end up looking different in different screen resolutions and at different browser sizes.<!--content-->oh ok :) Thanks for your help! I really appreciate it ;)<!--content-->Originally posted by christopher_ <br />
oh ok :) Thanks for your help! I really appreciate it ;) no problem ;)<!--content-->This code is NOT valid for 2 reasons:<br />
<br />
<BODY bgColor="#" leftMargin="0" topMargin="0" rightMargin="0" marginheight="0" missing a > here <BODY topmargin="0" bottommargin="0" rightmargin="0" leftmargin="0"><br />
<br />
You CANNOT have two <body> tags.<br />
<br />
<br />
<br />
See this [link (<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.everlasting-misery.com%2Fchristopher%2FOutwit10%2Findex.html&doctype=HTML+4.01+Transitional&charset=iso-8859-1+%28Western+Europe%29&ss=1&outline=1&sp=1">http://validator.w3.org/check?uri=http% ... ine=1&sp=1</a><!-- m -->)] for other errors. The only ones you need to worry about, are that you need to add a meta character encoding declaration into the <head> section, and you need to change <centre> to be <center> instead.<!--content-->
 
Back
Top