Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /*
  2. <figure>
  3. <img src={image} />
  4. <figcaption>{figure caption}</figcaption>
  5. </figure>
  6. */
  7.  
  8. figure {
  9. display: block;
  10. max-width: 100%;
  11.  
  12. img {
  13. display: block;
  14. width: 100%;
  15. }
  16.  
  17. figcaption {
  18. color: #949494;
  19. font-size: 15px;
  20. line-height: 21px;
  21. display: block;
  22. margin-top: 3px;
  23. text-align: right;
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement