Pull quotes without image


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  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. }

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.