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

sendoa on 07/13/06


Tagged

ie maxwidth


Versions (?)


Who likes this?

5 people have marked this snippet as a favorite

meth
fatihturan
nutella
tavo
penguin999


max-width en IE


Published in: CSS 


Hacer que la propiedad with se comporte como max-width en IE. El ejemplo sería el equivalente a poner un max-width de 800px

Funciona con IE 5 y 6 (7 sin probar)

Estaría bien usar comentarios condicionales para evitar problemas con otros navegadores y futuras versiones de IE.

  1. selector {
  2. width:expression(document.body.clientWidth > 800? "800px": "auto" );
  3. }

Report this snippet 

You need to login to post a comment.