Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. /* The blockquote displays in standards-compliant browsers with the "big quotes before"
  2. * effect, and in IE with a thick left border and a light grey background.
  3. * Unlike other blockquote techniques, this style does not require a nested block-level
  4. * element (like p). As such, it turns a paragraph into an inline-styled element to keep
  5. * the content from dropping below the quote. */
  6.  
  7. blockquote {
  8. background: #f9f9f9;
  9. border-left: 10px solid #ccc;
  10. margin: 1.5em 10px;
  11. padding: 0.5em 10px;
  12. quotes: "\201C""\201D""\2018""\2019";
  13. }
  14. blockquote:before {
  15. color: #ccc;
  16. content: open-quote;
  17. font-size: 4em;
  18. line-height: 0.1em;
  19. margin-right: 0.25em;
  20. vertical-align: -0.4em;
  21. }
  22. blockquote p {
  23. display: inline;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement