css how to center background image code example
Example 1: center background css
background-position: center;
Example 2: css align background image center
body{
background-image: url('css.gif');
background-repeat: no-repeat;
background-position: center;
}
Example 3: move css background image
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
Example 4: background position in html
background-position: right top;