Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active February 17, 2021 03:55
Show Gist options
  • Save frankyonnetti/5944684 to your computer and use it in GitHub Desktop.
Save frankyonnetti/5944684 to your computer and use it in GitHub Desktop.
CSS - IE version targeting hacks 1 #css #ie
/* IE 7 only hack */
*:first-child+html #myDiv { definition }
/* IE 7 and below hacks */
*:first-child+html #myDiv,
* html #myDiv { definition }
/* IE 6 and below hacks */
* html #myDiv { definition }
/* IE 5.5 box model hack */
* html #mydiv { width /**/: 150px; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment