Re: Text over image?

a monkey wrote:

> I have a large image using a map in my html page. How do I put text  
> over a certain part of it?

Use CSS and absolute positionioning.

e.g. :

<div style="position: relative;">
   <img src="big_picture.png" />
   <p style="position: absolute; top: 50px; left: 100px;">Text</p>
</div>

But this question is really inappropriate on www-html.


~Grauw

-- 
Ushiko-san! Kimi wa doushite, Ushiko-san!!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Laurens Holst, student, university of Utrecht, the Netherlands.
Website: www.grauw.nl. Backbase employee; www.backbase.com.

Received on Monday, 13 June 2005 15:37:58 UTC