HTML CSS examples for CSS Property:background-image
repeat the background image horizontally.
<html> <head> <style> body {<!--from w w w .j av a 2 s. c o m--> background-image: url("https://www.java2s.com/style/demo/Opera.png"); background-repeat: repeat-x; } </style> </head> <body> <p>Tutorials point</> </body> </html>