I need to display an image on the top-right corner of a div (the image is a \"diagonal\" ribbon) but keeping the current text contained in an internal div, like stuck to the
Position the div relatively, and position the ribbon absolutely inside it. Something like:
div
#content { position:relative; } .ribbon { position:absolute; top:0; right:0; }