This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
By default, the
property repeats an image both horizontally and vertically. Some images should be repeated only horizontally or vertically, or they will look strange, like this:body { background-image: url("gradient_bg.png"); }
If the image above is repeated only horizontally
, the background will look better:body { background-image: url("gradient_bg.png"); background-repeat: repeat-x; }
Tip: To repeat an image vertically, set
Showing the background image only once is also specified by the
property:Show the background image only once:
body { background-image: url("img_tree.png"); background-repeat: no-repeat; }
In the example above, the background image is placed in the same place as the text. We want to change the position of the image, so that it does not disturb the text too much.
The
property is used to specify the position of the background image.Position the background image in the top-right corner:
body { background-image: url("img_tree.png"); background-repeat: no-repeat; background-position: right top; }