css make height follow width fit content code example
Example 1: css keep image ratio
img {
object-fit: cover;
width: 100px;
height:100px;
}
Example 2: css background image follow scroll
background-attachment: scroll;
background-attachment: fixed;
background-attachment: local;