CSS 3 Serrated Skew in Chrome

Asked

Viewed 129 times

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 : )

  • Good afternoon dsantoro, post this as an answer, can be useful to other people. Do not need to close just answer :)

  • Thanks for the tip William.

1 answer

1

I used my head well and I got the code: -webkit-backface-visibility: hidden; that solved my problem.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.