Symon
Symon

Reputation: 671

CSS Header Side By Side or repeated

i have a image header that isn't a vectorial image, so, when my page width exceeds my image width the page will remain with a blank space, as you can see in the picture:

enter image description here:

But i need that the image will fill this blank space, so, i've created a portion of image that i want to repeatand place side by side the existing image, but i don't know how to do it via CSS.

Any Help?

Thanks.

Upvotes: 0

Views: 45

Answers (1)

sunitj
sunitj

Reputation: 1245

You can use this

background : url('image path') repeat-x ;

Upvotes: 2

Related Questions