You know how tekst (paragraphs) always wrap around a floated image, like so? [see img]

I would like the tekst to go OVER the image. Like in the example img below. I tried using z-index and display:inline but neither worked.

This is not my actual HTML, but basically what I looks like;
<img src="" alt="" style="float:right;" />
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sed eros tellus, sit amet ultrices quam. Sed quis justo metus, quis gravida orci. Vivamus porttitor fringilla massa at luctus. Quisque lacinia diam eget justo tempor vehicula. Nulla fringilla libero sit amet tortor bibendum imperdiet. Pellentesque in risus vel libero pellentesque hendrerit. Suspendisse vehicula fermentum pretium. Sed elementum eleifend dolor nec aliquam. Nam ac viverra dolor. Vivamus vitae ultricies velit.</p>
Try:
The key is
absolutepositioning. Make sure the container has a position set (userelativeif it doesn’t have one currently).(You may also need some
z-indexing to make sure the layers are correct).