Created
May 8, 2020 03:59
-
-
Save Fessan-zz/07fdd086b0e9351ee678f1504461e8f3 to your computer and use it in GitHub Desktop.
сброс стилей для кнопок
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
| /** | |
| * Сброс стилей у кнопки. | |
| * Придётся немного поработать, чтобы получить нейтральный вид. | |
| */ | |
| button { | |
| padding: 0; | |
| border: none; | |
| font: inherit; | |
| color: inherit; | |
| background-color: transparent; | |
| /* отображаем курсор в виде руки при наведении; некоторые | |
| считают, что необходимо оставлять стрелочный вид для кнопок */ | |
| cursor: pointer; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment