Repeat the Background Image - HTML CSS CSS Property

HTML CSS examples for CSS Property:background-image

Introduction

By default background-repeat property will have repeat value.

Demo Code

ResultView the demo in separate window

<html>
   <head>
      <style>
         body {<!--from   ww  w  .j a v  a2 s.  co  m-->
            background-image: url("https://www.java2s.com/style/demo/Opera.png");
            background-repeat: repeat;
         }
      </style>
   </head>
   <body>
      <p>Tutorials point</p>
   </body>
</html>

Related Tutorials