I have noticed that buttons and other elements have a default styling and behave in 3 steps: normal view, hover/focus view and mousedown/click view, in CSS I can change the styling of normal view and hover view like this:
Код: Выделить всё
button{ background:#333; color:#FFF; } button:hover{ background:#000; color:#EEE; } Код: Выделить всё
button:mousedown{ //some styling } Источник: https://stackoverflow.com/questions/167 ... tor-in-css
Мобильная версия