Answers for "css align background image center"

CSS
2

css align background image center

body{ 
   background-image: url('css.gif');
   background-repeat: no-repeat;
   background-position: center; 
 }
Posted by: Guest on May-28-2021
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
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