I need some help setting a css button. My intention is having 3 images inside a button forming a background image, lets call pic1, pic2 and pic3. I set pic1 as left and pic3 as right making the borders, I want pic2 to repeat-x filling all remaining space in between, the problem is that pic2 will gladly overwrite pic3.
what I have so far:
button {
background: url("images/btn_00.jpg") no-repeat scroll 0 0%,
url("images/btn_01.jpg") repeat-x scroll center center,
url("images/btn_02.jpg") no-repeat scroll right center transparent;
}
Do what I want is possible? how, please?