Skip to content

Instantly share code, notes, and snippets.

@jookyboi
Created March 23, 2011 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jookyboi/883383 to your computer and use it in GitHub Desktop.
Save jookyboi/883383 to your computer and use it in GitHub Desktop.
Max width css property for IE
/* From http://perishablepress.com/press/2007/01/16/maximum-and-minimum-height-and-width-in-internet-explorer/ */
* html div#division {
width: expression( document.body.clientWidth > 776 ? "777px" : "auto" ); /* sets max-width for IE */
}
div#division {
max-width: 777px; /* this sets the max-width value for all standards-compliant browsers */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment