I have a webpage that doesn't display correctly in safari.
The :active pseudoclass (which should turn the button yellow when pressed) doesn't work. Of course it works in any other browser.
Applied this solution, not working: :active pseudo-class doesn't work in mobile safari
Here is my example: https://jsfiddle.net/mt4sf7ov/
button:focus {
-webkit-appearance: none;
border-radius: 0;
background-color: yellow;
font-size: 30px;
padding: 2px 20px;
}