Answers for "move css background image"

CSS
3

move css background image

background-image: url('w3css.gif');
 background-repeat: no-repeat;
 background-attachment: fixed;
 background-position: center;
Posted by: Guest on September-22-2020
3

Background image position

.background-image-position{
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
Posted by: Guest on May-05-2021
0

css align backround image to the right

.right-align-background {
    background-position: center right;
}
Posted by: Guest on January-04-2020

Browse Popular Code Answers by Language