I made a ribbon in Photoshop. The ribbon has three part. The left and right parts are a fixed 10px. The middle sectoin is a repeatable pattern.
Is it possible to com
As @j08691 pointed out, this is only possible in CSS3
#your-selector { background-image: url(one.png), url(two.png); background-position: center bottom, left top; background-repeat: no-repeat; width: 300px; height: 350px; }
See tutorial