/***** 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" );
}
height
Leave a Reply
You must be logged in to post a comment.