Quote:
Originally Posted by Taltos
No problem.
FYI...The % issue was probably that you had 100% width in the innermost table but its containing tag didn't have a % width. That made it use 100% of the browser window (sort of) as the width for the innermost table.
|
Actually the containing tag did have a percentage -- 82%. The whole screen is split into two columns: 18% from the left margin is the navbar and 82% (the right column) is the content area. The content area is also enclosed by a green border created with a DIV tag that utilizes a CSS class.
I want to use 100% of the 82% content area, while keeping the innermost table within the green border. Thus, for the innermost table, I used
Code:
<table border="1" width="100%" cellpadding="0" cellspacing="0">
However, I found that when I did
not specify a width for the innermost table, the browser calculated the table width itself and displayed it perfectly in both IE 6 and Firefox 2. Go figure...
Thanks for the reply.