I have a div inside another div, and I'm trying to tilt the div so that the left side touches the left side and the right side touches the top. Is there access to CSS?
Here is my code:
.background { background-color:black; height:368px; } .sold { background-color:red; font-size:26px; width:200px; text-align:center; height:40px; color:white; line-height:40px; } <div class="background"> <div class="sold">Sold Out</div> </div>
Here is my jfiddle: http://jsfiddle.net/vakcgvtu/
source share