background image position code example
Example 1: move css background image
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
Example 2: css background offset
background-position: 5px 5px;
Example 3: Background image position
.background-image-position{
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
Example 4: css align backround image to the right
.right-align-background {
background-position: center right;
}
Example 5: background position in html
background-position: right top;