We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

iTony on 04/04/08


Tagged

css layout fluid


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

Wiederkehr
SpinZ
digiloper


Cross-browser fluid layout


Published in: CSS 


  1. #page-wrap {
  2. min-width: 960px; max-width: 1260px;
  3. margin: 0 auto; padding: 0 10px;
  4. width:expression(document.body.clientWidth < 961? "960px" : document.body.clientWidth > 1261? "1260px" : "auto");
  5. }

Report this snippet 

You need to login to post a comment.