i have a button which is in a <a>
tag and i want to skew only the button and not the text
i know i can add <label>Add to cart</label>
and un-skew it the opposite of the skewed amount but i don't have access to the html but only css.
<a role="button" id="add_to_cart" class="btn btn-primary" href="#">Add to Cart</a>
and css i did
.btn {
transform: skew(10deg);
}
is there any way i can un-skew the text inside this button without adding any other tag to the markup?