Skip to content

Instantly share code, notes, and snippets.

@RALMAZ
Last active December 8, 2017 22:42
Show Gist options
  • Save RALMAZ/c1919c624159f735909a2fa62cf178d1 to your computer and use it in GitHub Desktop.
Save RALMAZ/c1919c624159f735909a2fa62cf178d1 to your computer and use it in GitHub Desktop.
Css tricks
.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