repeat the background image horizontally. - HTML CSS CSS Property

HTML CSS examples for CSS Property:background-image

Description

repeat the background image horizontally.

Demo Code

ResultView the demo in separate window

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

Related Tutorials