Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. ## CSS
  2.  
  3. ```
  4. img, iframe {
  5. aspect-ratio: attr(width) / attr(height);
  6. }
  7. ```
  8.  
  9. ## HTML
  10.  
  11. ```
  12. <img src="image.jpg" width="800" height="600" />
  13. ```
  14.  
  15. It automatically has the correct aspect ratio as the page loads. That's awesome.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement