Guest User

Untitled

a guest
Nov 20th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <style>
  2. .aspect-ratio {
  3. padding-top: calc(1 / (16 / 9) * 100%);
  4. position : relative;
  5. }
  6.  
  7. .aspect-wrapper {
  8. position: absolute;
  9. top:0;
  10. left:0;
  11. width:100%;
  12. height:100%;
  13. }
  14. </style>
  15.  
  16. <div class="aspect-ratio">
  17. <div class="aspect-wrapper">
  18. Maintains block aspect ratio at different resolutions
  19. </div>
  20. </div>
Add Comment
Please, Sign In to add comment