I'm 'embellishish' an existing website with some nice flourishes to the corners and borders of a content div. Without changing the markup at all (as it is generated by a CMS), how can I add 'flourish' images (ie corner flourishes like this) and fancy borders using CSS only?
Fancy ASCII Art representation of what I want to achieve (outer border represents div):
---------------------------------------------
| |
| #%%% .................... %%%# |
| % % |
| % % |
| |
| . . |
| . . |
| . . |
| . . |
| . . |
| . . |
| . . |
| . . |
| . . |
| . . |
| . . |
| |
| % % |
| % % |
| #%%% .................... %%%# |
---------------------------------------------
The div can expand vertically. It needs to work across browsers (CSS3PIE is being used). And the div already has a background image.
Is CSS3 Multiple Backgrounds the way to go? Or are CSS3 Border Images the best way?
Which technique will give the best flexibility in terms of the handling the vertically expanding div as well as how far inset the borders / corners can be?