Create Overlapping Image in corner of Block w/ negative margins and prevent it from being cut off
Permalink
In a perfect world, I could just add style="margin-left: -40px; margin-top:-40px" to an image and have it overlap the top left corner of a div or block in this case. The image shifts the appropriate amount of pixels both left and up, but it is cut off at the edge of the block/div. Is this a z-index issue, overflow issue, etc.???
The website here has the solution:
http://haslayout.net/css/Negative-Margin-Bug...
Basically you would need to remove any layout from the container, and position it using margins instead.
i.e, instead of:
Use this instead:
Obviously this won't be your particular solution, but maybe it will help you along your way?
Hope I helped! :-)