Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS how to do fullscreen two row layout without using a table Re: how to do fullscreen two row layout without using a table

#84366

The solution would be something like this:


#container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 30px;
}
#footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 30px;
}