Created
February 19, 2013 06:29
-
-
Save chilinaz/4983581 to your computer and use it in GitHub Desktop.
CSS: Old IE Fixes (mixed bag)
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
/* Fixes for Internet Explorer CSS - ie.css */ | |
/* png fix for IE6 and lower | |
------------------------------------ */ | |
* html #selector { | |
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='img/image.png'); | |
background-image: none; | |
background-repeat: no-repeat; | |
background-color: transparent; | |
} | |
/* Self-Clearing Float Class - .group | |
------------------------------------ */ | |
/* for IE6 ---------------------------- */ | |
* html .group { | |
height: 1%; | |
} | |
/* for IE7 ---------------------------- */ | |
*:first-child+html .group { | |
min-height: 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment