repeat the background image vertically. - HTML CSS CSS Property

HTML CSS examples for CSS Property:background-image

Description

repeat the background image vertically.

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials