hi Lori

> Is there any way to get IE6 to honor the css attribute 
> 'min-width', or a 
> way to script, hack or cheat some version of it?

As it happens, I was reading* about a way of doing this yesterday.  The
trick was to use a javascript expression in the css, which IE apparently
supports.

e.g

#container {
  min-width: 600px;
  width:expression(document.body.clientWidth < 600? "600px": "auto" );
}

I've not tried it in anger, so YMMV.

Rob

*http://www.webcredible.co.uk/user-friendly-resources/css/more-css-trick
s.shtml, tip #3

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to