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
You can just do it like this:
#content { position: relative; } #content img { position: absolute; top: 0px; right: 0px; } some text...