Last active
February 17, 2021 03:55
-
-
Save frankyonnetti/5944684 to your computer and use it in GitHub Desktop.
CSS - IE version targeting hacks 1 #css #ie
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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