1 background-image: url('w3css.gif');
2 background-repeat: no-repeat;
3 background-attachment: fixed;
4 background-position: center;
1
2 .background-image-position{
3 background-position: center; /* Center the image */
4 background-repeat: no-repeat; /* Do not repeat the image */
5 background-size: cover; /* Resize the background image to cover the entire container */
6}
7
8