Created
June 27, 2012 13:12
-
-
Save johnw86/3003987 to your computer and use it in GitHub Desktop.
Fixes for IE issues
This file contains 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
:after in IE7 | |
#content blockquote:after, | |
#content blockquote .after { | |
background:url('/images/background/_sprite.png'); | |
background-position:-259px -66px; | |
bottom:26px; | |
content:''; | |
display:block; | |
height:14px; | |
right:0; | |
position:absolute; | |
width:20px; | |
} | |
if ($('html').hasClass('ie7') && $('#content blockquote').length) { | |
$('#content blockquote').append($('<span/>').addClass('after')); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment