Using the top CSS property on a relatively positioned element fails on iOS. I use this property to simulate the pressing of a button. Why does it fail, and how to achieve the same effect on iOS?
<button>
button
</button>
...
button {
position: relative;
padding: 30px 80px;
}
button:active {
top: 6px;
}