View Single Post
  #19 (permalink)  
Old 04-29-2008, 12:07 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default Re: Your opinion wanted!

If you absolutely must define a height, then when using text in a box, define all the heights in ems. That defines the height proportional to the text size. If you define heights in pixels it will always be a problem in boxes with text. You might need to define the widths with ems also. Though a side scroll may appear in the largest text sizes, that at least gives a page that is usable.

Also, abs positioning is not a good way to define that footer position. Abs positioning says this div of this dimension will go HERE no matter what else might be there. Abs positioned items will overlap other stuff. That's what you're seeing.

Last edited by bj; 04-29-2008 at 12:09 PM. Reason: additional info