MDanz Posted March 1, 2010 Share Posted March 1, 2010 the table should cover the whole screen because of the percentages. I want the word test at the bottom of the screen, but it's not working? any better methods? <table width="100%" height="100%" border="0"> <tr> <td valign="bottom">test</td> </tr> </table> Link to comment https://forums.phpfreaks.com/topic/193752-how-to-get-menu-at-bottom-of-screen/ Share on other sites More sharing options...
simcoweb Posted March 1, 2010 Share Posted March 1, 2010 Eek! A table! I urge you to switch to tableless layouts. The only method I know for making a fixed footer utilizes div's and not tables: footer { position:fixed; left:0px; bottom:0px; height:30px; width:100%; background:#999; } /* IE 6 */ * html #footer { position:absolute; top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px'); } Link to comment https://forums.phpfreaks.com/topic/193752-how-to-get-menu-at-bottom-of-screen/#findComment-1019910 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.