html - Quotes in top-left and bottom-right corner of div -
i want have div looking following picture quotes in top left , bottom right corner of , wondering way achieve without images.
use :before
, :after
div{ padding: 25px; background: #5bc5f2; max-width: 300px; height: 100px; text-align: center; position: relative; } div:before, div:after{ position: absolute; font-size: 50px; color: #fff; font-weight: 700; } div:before{ content: '\201d'; top: 0; left: 10px; } div:after{ content: '\201c'; bottom: 0; right: 10px; }
<div>text</div>
Comments
Post a Comment