1<style>
2 img {
3 width: 100%;
4 height: auto;
5 aspect-ratio: attr(width) / attr(height);
6 }
7</style>
8<img src="hero_image.jpg" alt="" width="500" height="500">
1<div style="height:50px">
2 <div id="innerDiv" style="height:auto">
3 <div id="evenInner" style="height:10px">
4 </div>
5 </div>
6</div>
1<div style="height:50px">
2 <div id="innerDiv" style="height:100%">
3 </div>
4</div>