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