Home > Article > Web Front-end > Can I Position a CSS Background Image with a Fixed Right Offset?
Question:
Can a CSS background image be positioned with a fixed offset from the right, instead of the left?
Answer:
Yes, it is possible to position a background image with a fixed offset from the right using CSS.
How to Position a Background Image from the Right:
To position a background image a specific number of pixels from the right, use the following syntax:
background-position: right <value> center;
Example:
To position a background image 30 pixels from the right:
background-position: right 30px center;
Browser Support:
This method works in most modern browsers. You can check browser compatibility at: http://caniuse.com/#feat=css-background-offsets
Additional Resources:
The above is the detailed content of Can I Position a CSS Background Image with a Fixed Right Offset?. For more information, please follow other related articles on the PHP Chinese website!