How can I add a second background image within a <blockquote> ?
I have one background image in the top left hand corner of a blockquote, I want to place another in the bottom right hand corner. I read about using repeat-y but wouldn’t that just repeat the image ?
Makes sense. I know the style sheet that the <blockquote> is associated with. I’m just having problems reading where the <div> that contains the block quote is because of the relying PHP code.
For CSS2 you’d need to add another element to apply the image to (e.g. wrap the blockquote in a div and apply an image to that). Or you could use :after or :before to add content if you don’t need to support IE7 and under.
Inn css3 you can use multiple background images on a single element but its not supported in ie8 and under.