Jump to content

repeat mulitiple image vertically


SN1P3R_85

Recommended Posts

You can not repeat two images at the same time in a div. You can only repeat one image at a time. Furthermore, you have little control over how it it repeated.

 

A picture illustrating of what you would like to accomplish would be extremely helpful!

i don't mind if its more than one div. I just want the picture to line the left side, and right right side. I know how to make the image repeat vertically, and i know how to make it on the left side, but i want to do the exact same thing on the right side. Basically, my page would have the picture repeated on the left, and the right at the same time. divs aren't neccesarily the way to go, i just thought they may be.

if i understand this correctly you want something like this making a border on each side of your content

and if this is the case i would use divs

<div class="left"> </div>
<div class="right"> </div>
<div class="content">Insert content here</div>

then use css then add your image as a background to left and right

 

 

div.left {float:left}
div.right{float:right}

 

| content   |

| content   |

| content   |

| content   |

| content   |

| content   |

| content   |

| content   |

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.