HTML Question :)
Hi
Guys I can't get tables to stretch at 100% in a uniformed way to the edge of the browser, in Internet Explorer 6 they are not stretching vertically all the way to the bottom, in Mozilla the experience is worst because they are not stretching all the way around to the edge of the browser.
In that site every table or cell that should be stretch is set up at 100%, and every table at the bottom of the page have backgrounds images that will repeat it self , so this is not a case of tables that are stretched but are not showing because are missing their content.
Any ideas
Thanks
Alex
[638 byte] By [
QBAN] at [2007-11-19 21:51:56]

# 1 Re: HTML Question :)
I got it, it was the extra code that dreamwearver added to my html page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
thanks
QBAN at 2007-11-8 0:22:56 >

# 3 Re: HTML Question :)
Just for future reference, the best way to get percentages to work perfectly is to adjust the margins and margin spacing.
<html>
<body topmargin=15 leftmargin=15 rightmargin=15 bottommargin=15 marginwidth=15 marginheight=15>
<table width=100% height=100% border=1><tr><td></td></tr></table>
</body>
</html>