Time for action—Repeating images horizontally
To repeat images horizontally, you can put the value repeat-x
next to the background-repeat
property.
body {
background-color: white;
background-image: url('../img/myimage.jpg);
background-repeat: repeat-x;
font-size: 11px;
font-family: Verdana, Arial, Helvetica, Sans-Serif;
color: #5d717e;
text-align:center
}
The following screenshot is what you will see in your browser: