Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. img
  2. {
  3. outline: 0; max-width: 100%; height: 100%;
  4. }
  5. .box{
  6. position: relative;
  7. width: 30%;
  8. /* desired width */
  9. }
  10. .box:before{
  11. content: "";
  12. display: block;
  13. padding-top: 50%;
  14. }
  15.  
  16. .content{
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. bottom: 0;
  21. right: 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement