csspositionbackground-imagerepeatbackground-repeat

How would I re-position my 2nd bg image " url(repeat_bg_right_side.png) " to the right side of page using css?


background-image: url(repeat_bg.png), url(repeat_bg_right_side.png);
background-repeat: repeat-y, repeat-y; "

how would I reposition url(repeat_bg_right_side.png) to the right side of page ? these are basically 2 small image files i'm using as columns to fill the left and right portion of the bg. thank u for your time Position of BackgroundImage in Windows Form!


Solution

  • You could do this

    background: url(repeat_bg.png) repeat-y, url(repeat_bg_right_side.png) top right repeat-y;