height

/***** this sets the max-width value for all *****/
div#division {
max-width: 777px;
}

/***** this sets the max-width value for IE *****/
* html div#division {
width: expression( document.body.clientWidth > 776 ? "777px" : "auto" );
}

source

Leave a Reply