Home > Article > Web Front-end > Can CSS Background Images Be Pixel-Aligned from the Right?
Positioning Background Images with CSS: Can They Be Pixel-Aligned Right?
Many developers commonly assume that the background-position property only allows specific pixel offsets from the left and top sides. However, there is indeed a solution to your query:
Using a Right Offset:
To position a background image a fixed number of pixels from the right edge, use the following syntax:
background-position: right 30px center;
This code sets the horizontal offset of the background image to 30 pixels away from the right side, while centering it vertically.
Compatibility:
The right keyword is supported in most modern browsers. For a comprehensive list of browser support, refer to the following resources:
The above is the detailed content of Can CSS Background Images Be Pixel-Aligned from the Right?. For more information, please follow other related articles on the PHP Chinese website!