Home > Article > Web Front-end > How to set the background image to be centered in css
In CSS, you can set the center of the background image through the background-position attribute: horizontal values: center (center), left (left-aligned), right (right-aligned) vertical values: center (center), top ( Top alignment), bottom (bottom alignment) syntax: background-position: horizontal-value vertical-value;
How to use CSS to center the background image
Get straight to the point:
In CSS, use the background-position
property to set the center position of the background image.
Detailed expansion:
background-position
The property accepts two values, specifying the horizontal and vertical position respectively:
Horizontal value:
center
: Horizontally centered left
: Left alignedright
: Right aligned Vertical value:
center
:Vertically centered top
:Top alignmentbottom
:Bottom alignmentGrammar:
<code class="css">background-position: horizontal-value vertical-value;</code>
Example:
<code class="css">body { background-image: url("background.jpg"); background-position: center center; }</code>
Other notes:
initial
and inherit
to reset the value to the initial value or inherit the value of the parent element respectively. Tip:
background-size
property to resize the image to prevent distortion. The above is the detailed content of How to set the background image to be centered in css. For more information, please follow other related articles on the PHP Chinese website!