onenonly Posted August 8, 2009 Share Posted August 8, 2009 Works fine on IE, but not FIREFOX... In my CSS I define HEIGHT to 700px for my TABLE If my TABLE has nothing in it, I still want the Height at 700px In IE Table height stays at 700px but if content inside is larger the table height also stretch Thats what I want FIREFOX to do... In FIREFOX Table height stays at 700px no matter what, even if the content inside is larger it still stays at the height I fixed it by taken out the height attribute so it stretch automatically to the content inside but if no content is added the table height will not be at 700px at default which will amke the page look empty anyone found a fix????? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted August 8, 2009 Share Posted August 8, 2009 I deally you should not be using tables for layouts. However for you want to do is use the min-height CSS property on your table. Quote Link to comment Share on other sites More sharing options...
onenonly Posted August 8, 2009 Author Share Posted August 8, 2009 I deally you should not be using tables for layouts. However for you want to do is use the min-height CSS property on your table. now it doesnt work for IE????? IE doesnt keep it atleast the height at 700 now its the other way around... Quote Link to comment Share on other sites More sharing options...
onenonly Posted August 8, 2009 Author Share Posted August 8, 2009 I deally you should not be using tables for layouts. However for you want to do is use the min-height CSS property on your table. now it doesnt work for IE????? IE doesnt keep it atleast the height at 700 now its the other way around... I found the fix!!! =) i dunno why but it works min-height:700px; height:auto !important; height:700px; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.