Last active
December 8, 2017 22:42
-
-
Save RALMAZ/c1919c624159f735909a2fa62cf178d1 to your computer and use it in GitHub Desktop.
Css tricks
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
.example { | |
/* Прячем выделения при случайных двойных кликах */ | |
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); | |
/* Сглаживание "зубчатости" при соприкосновении блоков */ | |
-webkit-font-smoothing: antialiased; | |
} | |
/* Хак для отображения в IE10-11 (будь он четырежды проклят) */ | |
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
/* Style */ | |
} | |
/* Да гори он в аду уже, сколько можно */ | |
/* При наведении на загрузку файлов, селекты IE дает каретку для текста КАРЛ! Каретку для текста! */ | |
input:focus { | |
text-indent: -9999999em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment