I have a situation where I'm trying to overlay a small square transparent image on the top left border of a div that has a 1px border. The image is 48px by 48px in size and I want it to give the illusion that it's going underneath the top and left borders of the div.
I've tried using background-image with 'left top' positioning, but it ends up placing the image inside the div's borders instead of overlapping them like I want it to. Unfortunately, I don't have any examples to provide, so I hope my explanation is clear enough.
For reference, you can view the JSFiddle here: http://jsfiddle.net/9sn22/1/
<div id='mybox'>text</div>
#mybox {
text-indent: 0.5in;
background-image:url('http://aerbook.com/site/images/quote-mark-icon-black.png');
border-radius:3px;
border: 1px solid #cccccc;
height: 300px;
font-weight: 200;
text-indent: 0.35in;
padding: 20px;
background-repeat:no-repeat;
background-position: left top;
}