I have been using the Advanced checkbox hack to hide and show my responsive menu. The hack is necessary to allow Android <4.1.2 to actually tap the toggle--it doesn't work without the hack.
Now it turns out that the animation part of the hack
body {
-webkit-animation: bugfix infinite 1s;
}
@-webkit-keyframes bugfix {
from {padding:0;}
to {padding:0;}
}
causes actual movement in at least an iPhone. How do I prevent this hack from ruining the site experience for iPhone users?
I have a preview live with the error over here. A movie with the error visible is seen here.
I don’t have an Android to test this but wont the hack also work when just applied to one element instead of the entire body?
.toggle {
-webkit-animation: bugfix infinite 1s;
}
@-webkit-keyframes bugfix {
from { padding: 0; }
to { padding: 0; }
}
As long as you don’t have any padding on that element
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With