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.

enter image description here

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

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -