Table alignment - urgent help needed please..
-
Hi I am new to Asp.net.... I am converting a htm files in to aspx files for localization issues. I have a table with width=100% and height = 100%. when I open the html page inside a fixed frame window. The table is not filling the whole window. I want the last of the table to be on the bottom frame of the window. The below is the piece of my table. At present the last of the main table is displayed above the window size. I want the empty space between the tr and the window size to be removed.... any help is highly appreciated....
-
Hi I am new to Asp.net.... I am converting a htm files in to aspx files for localization issues. I have a table with width=100% and height = 100%. when I open the html page inside a fixed frame window. The table is not filling the whole window. I want the last of the table to be on the bottom frame of the window. The below is the piece of my table. At present the last of the main table is displayed above the window size. I want the empty space between the tr and the window size to be removed.... any help is highly appreciated....
set the fixed height for the botton row, <table> <tr height =100%> <td> // insert your codes. if you want scroll for this content , use div tag, add your elements inside the div tag. <td> </tr> <tr height = 25px> <td> </td> </tr> </table> Regards Elayaraja.S