Your Ad Here

Posted By

a1ias on 07/28/11


Tagged

blcokquote


Versions (?)

Pull quotes without image


 / Published in: CSS
 

URL: http://www.1stwebdesigner.com/css/17-css-html-effects/

  1. blockquote:before {
  2. display: block;
  3. float: left;
  4. margin: 10px 15px 0 0;
  5. font-size: 100px; /* let's make it a big quote! */
  6. content: open-quote; /* here we define our :before as a smart quote. It could be any content, even the HTML entity alternative to this opening quote, that is “ */
  7. color: #bababa;
  8. text-shadow: 0 1px 1px #909090;
  9. }

Report this snippet  

You need to login to post a comment.