Thread: Fixed Height
View Single Post
  #3 (permalink)  
Old Dec 28th, 2006, 15:07
artwich artwich is offline
Junior Member
Join Date: Dec 2006
Location: ...
Age: 14
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Fixed Height

if you have one CSS document then:
Code: Select all
#leftnav{
   float:left;
   height:<height>px;
   overflow:auto;
}
#content{
   float:left;
   height:<height>px;
   overflow:auto;
}
#rightnav{
   float:left;
   height:<height>px;
   overflow:auto;
}
This SHOULD work.
Reply With Quote