Is there a way to apply a webkit transformation to a div without affecting the text inside? I need help with achieving this. Below is my current code:
.main_div {
width:200px;
height:100px;
background:red;
margin-left:55px;
margin-top: 25px;
position:relative;
-webkit-transform: skew(-30deg);
}
<div class="main_div">
Dummy Text Here
<input type="field" value="" name="" ></input>
</div>