How to make an image stretch from the middle with css?

nudu

New Member
There's repeat-x, repeat-y, etc. But none of them do what I want them to.

I have a gradient image that is like

|-------------------------------------|

But a fixed width image, so I would like to stretch it somehow to the width of the page so it goes

|------------------------------------------------------| etc

do you know how ?

Thanks
 

Hoxxy

New Member
add a width attribute
Code:
width="???px"
or for css
Code:
style="width:???px;"

or resize image to desired width
 
Top