1
When using the Transform: skew(value) property in Webkit browsers it displays a certain serration where it gets angled:
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-ms-transform: skew(20deg);
transform: skew(20deg);
Is there any specific property to "fix" this?
I used my head well and came up with the code: -Webkit-Backface-visibility: Hidden; which solved my problem. I will close question thank you : )
– dsantoro
Good afternoon dsantoro, post this as an answer, can be useful to other people. Do not need to close just answer :)
– Guilherme Nascimento
Thanks for the tip William.
– dsantoro