Chrome : Text blurry when skew back : skew(-10deg) -> skew(10deg) – Photoshop
I just want to skew the parent and skew it back on the child. Example : HTML <div class="parent"> <!-- skew(-10deg) --> <div class="child">Hello</div> <!-- skew(10deg) (skew back) --> </div> Example : CSS .parent { transform: skew(-10deg); } .child {…