Last active
January 10, 2020 16:41
-
-
Save kaanra/53df5d0fc8bbee2dd5b8 to your computer and use it in GitHub Desktop.
[Firefox opacity jitter bugfix] #css
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
// Fix the Firefox opacity jitter issue | |
// Source: http://stackoverflow.com/questions/7582567/css-opacity-change-on-hover-flickering | |
-moz-transform: rotate(0); |
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
// stop background image and opacity change flicker in IE11 | |
@include transform(rotate(0)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment