'How to Change the background image size in custom css?

i was trying like that,that is not working

.login{

margin-top: 70px;
margin-bottom: 100px;
background-image: url(../../Images/bg5.png);
background-size:0 500px;
width: 100%;

}

css


Solution 1:[1]

I see the error. You have to add width value to background-size since your using two-value syntax (first value: width of the image, second value: height)

e.g. background-size:300px 500px;

Visit https://developer.mozilla.org/en-US/docs/Web/CSS/background-size

Also remove width property.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Cdawg_2021