PDA

View Full Version : vertical table, pls help!!



camaleon
October 6th, 2008, 12:09 AM
hi guys,

how i can make a 100% autostretch vertical table?

i need a table that show ever at 100% autostretch vertical.
i put in the table properties height=’’100%’’ but dont work .
how could i make autostretch vertical table???????????????????????

Thanks!

yahoo456
October 6th, 2008, 06:19 AM
hey buddy i think this link will help you.
http://www.webdeveloper.com/forum/showthread.php?t=180508

tfg
October 6th, 2008, 10:06 AM
give the <body> element a set height of 100% so it automatically fills the height of the screen. then the <table> element will fill 100% of the parent element's height, which you've now set at 100%, effectively the table now has a height of 100% of the screen.

css:

body {
min-height: 100%;
}

table {
height: 100%;
}