one more min-width solution for IE

On 10-29-2005, in Coding, CSS, by Alex

#minWidth {
min-width:780px;
}
* HTML #minWidth {
width:expression((document.body.clientWidth<=780)?'780px':'auto');
}

It works correctly for resizing IE.
But I’d like to move second rule into special IE-only CSS (using ie-comments)

Thanks to pepelsbey 🙂

 

2 Responses to one more min-width solution for IE

  1. Brent says:

    Thanks, Legend! Just what I needed!

  2. slimjackson says:

    Many thanks for this.