View Single Post
  #2 (permalink)  
Old Sep 26th, 2007, 13:26
welshstew's Avatar
welshstew welshstew is online now
Lead Administrator

SuperMember
Join Date: May 2007
Location: inside the outside
Posts: 1,497
Blog Entries: 13
Thanks: 1
Thanked 20 Times in 18 Posts
Re: Table height 100%

Subha,

It's not that the browser isn't recognising ro ignoring the height attribute, it's that when you are in a standards compliance mode, it's expanding it to 100% height of the html and body area.

In order to fix this you can add the following code:

Code: Select all
html,body{
      margin:0;
      padding:0;
      height:100%;
      border:none
   }
Your table should expand to the height you then set.

Stew

P.S why not switch to CSS tabless design, much nicer.....
__________________
WelshStew
Lead Administrator

tierney rides tboard - uk site | xtreme wales - extreme clothing
If you think I've helped, click the "Thanks"
webforumz - facebook | LinkedIn
Reply With Quote