shldhee / note

개인노트
0 stars 0 forks source link

image width height css aspect-ratio #27

Open shldhee opened 2 years ago

shldhee commented 2 years ago
<style>
  img {
    width: 100%;
    height: auto;
    aspect-ratio: attr(width) / attr(height);
  } 
</style>
<img src="hero_image.jpg" alt="" width="500" height="500">

https://www.smashingmagazine.com/2020/03/setting-height-width-images-important-again/