View Single Post
  #7 (permalink)  
Old Nov 17th, 2007, 13:33
ScottR ScottR is offline
Reputable Member
Join Date: Dec 2005
Location: U.S.A.
Posts: 151
Thanks: 0
Thanked 4 Times in 4 Posts
Re: Designing Web Sites For All Screen Resolutions

Quote:
Originally Posted by MikeHopley View Post
Fully fluid layouts, where you define the layout in %, will adapt to screen size but will have distorted proportions and painfully long lines of text at high resolutions.

My preferred method is to use an elastic layout. This is where you define the layout in "ems", a unit of font-size. Combining this with the CSS max-width allows you to keep line lengths constant, while creating a layout that scales up with the text size.

Elastic layouts are rather difficult to get used to, however.
Last I knew IE doesn't support max-width. So JS would have to determine the window size and size the elements from there.
__________________
Web Design and Development
Reply With Quote