files/en-us/web/css/reference/properties/background-repeat-x/index.md
The background-repeat-x CSS property sets how background images are repeated, or not, along the horizontal axis.
The background-repeat-x and {{cssxref("background-repeat-y")}} properties can also be set using the {{cssxref("background-repeat")}} or {{cssxref("background")}} shorthand properties.
{{InteractiveExample("CSS Demo: background-repeat-x")}}
background-repeat-x: repeat;
background-repeat-x: space;
background-repeat-x: round;
background-repeat-x: no-repeat;
<section id="default-example">
<div id="example-element"></div>
</section>
#example-element {
background: #cccccc url("/shared-assets/images/examples/moon.jpg") no-repeat
center / 120px;
min-width: 100%;
min-height: 100%;
}
/* Keyword values */
background-repeat-x: repeat;
background-repeat-x: space;
background-repeat-x: round;
background-repeat-x: no-repeat;
/* Global values */
background-repeat-x: inherit;
background-repeat-x: initial;
background-repeat-x: revert;
background-repeat-x: revert-layer;
background-repeat-x: unset;
The background-repeat-x property is specified as one or more values, separated by commas.
repeat
no-repeat
space
round
The background-repeat-x property accepts a comma-separated list of <repetition> keyterms, which define how the background image(s) should repeat horizontally, or not repeat at all.
The default value is repeat. With this value, the background image repeats horizontally, covering the entire width of the background paint area, with edge images being clipped to the size of the element. Whether the left, right, or both edges are clipped depends on the value of the corresponding {{cssxref("background-position")}} value. How many times images are repeated and how much the images on the edges are clipped depends on the size of the background painting area and width value of the corresponding {{cssxref("background-size")}} property.
The repeating images can be evenly spaced apart, ensuring the repeated images aren't clipped in the horizontal direction. With the space value, if the width of the background paint area is not a multiple of the width of the image or does not otherwise have a size that is a multiple of the background size in the width direction, there will be areas not covered by the background image.
Alternatively, the repeated background image can be stretched to cover the entire width of the background area without clipping. With round, the repeated image is stretched to fill all the available space until there is room to add an additional repeated image.
For example, given a background image that is 100px x 100px and a background paint area that is 1099px wide, the image will be resized to 109.9px wide and repeated 10 times in the horizontal direction. This will alter the image's {{glossary("aspect ratio")}} and distort it. If the width of the paint area increases by 1px to 1100px, an 11th image will fit horizontally, with each image being painted at 100px wide, and no longer distorted horizontally.
{{cssinfo}}
{{csssyntax}}
<ol>
<li>
no-repeat
<div class="one"></div>
</li>
<li>
repeat
<div class="two"></div>
</li>
<li>
space
<div class="three"></div>
</li>
<li>
round
<div class="four"></div>
</li>
</ol>
ol,
li {
margin: 0;
padding: 0;
}
li {
margin-bottom: 12px;
}
div {
background-image: url("star-solid.gif");
width: 160px;
height: 70px;
}
/* Background repeats */
.one {
background-repeat-x: no-repeat;
}
.two {
background-repeat-x: repeat;
}
.three {
background-repeat-x: space;
}
.four {
background-repeat-x: round;
}
@layer no-support {
@supports not (background-repeat-x: repeat) {
body::before {
content: "Your browser doesn't support the `background-repeat-x` property.";
background-color: wheat;
display: block;
padding: 1em;
text-align: center;
}
}
}
In this example, each list item is matched with a different value of background-repeat-x.
{{EmbedLiveSample('Setting_background-repeat-x', 240, 460)}}
{{Specifications}}
{{Compat}}