With the code below, why the text COMING SOON goes further to the right and does not align to the left. The text should be placed as a vertical overlay in the upper left corner of the image.
HTML:
<div class="grid">
<div class="block">
<div class="badge">NEW</div>
</div>
<div class="block">
<div class="badge">SALE</div>
</div>
<div class="block">
<div class="badge">COMING SOON</div>
</div>
</div>
CSS
.grid{display:block;width:100%;}
.block{width:255px;height:255px;border:1px solid #333;margin:12px;float:left;position:relative;}
.badge{position:absolute;transform:rotate(90deg);top:12px;left:0;}
source
share