skip to Main Content

I want to achieve the following:
On the background of my webpage I want to have repeated italic shades (rectangles?) in Blue, red and white using HTML and CSS.

Example on following website: http://clubbrugge.be/nl/

I kwow photoshop so if nessecary I can create the rectangles there.

2

Answers


  1. use,

    body {
    background-image: url("paper.gif");
    background-repeat: repeat-y;
    }
    

    Check this link for repeated background

    Login or Signup to reply.
  2. give background image and repeat vertically

    .background{
      background-image: url('yourfolder/image.jpg');
      background-repeat: repeat-y;
    }
    

    you can use it in body <body class="background"> or in any div

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search