So I am creating a container with rounded corners using the following method:
div.rounded { background: #CFFEB6 url(\'tr.gif\') no-repeat top right; } div.ro
The cleanest solution is probably to specify your divs as exact children.
Try changing this:
div.rounded div div { background: url('bl.gif') no-repeat bottom left; }
To this:
div.rounded > div > div { background: url('bl.gif') no-repeat bottom left; }