Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Text overlays over image using relative positioning

I want to position a text overlaying an image. Below is my currently used code:

<td width="10%">
  <img src="tempballoon.png" alt="balloon" style="z-index: -1" />
  <div style="position:relative;left:30px;top:-75px;font-size: 32px;display: none">
    Test
  </div>
</td>

My problem is, although the text is properly overlayed, the "space" it consumes in the <td> is still there! When I tried to replace the 'top' position in the <div> with 'margin-top', it also affects the <img> and so the <img> goes past the border of the <td>.

like image 575
Water Avatar asked Sep 17 '11 03:09

Water


1 Answers

You want position: absolute and the container to be relative:

<td width="10%" style="position: relative;">
    <img src="tempballoon.png" alt="balloon"  style="z-index: -1"/>
    <div style="position:absolute;left:0px;top:0px;font-size: 32px;display: none">
      Test
    </div>
</td>
like image 102
Blender Avatar answered Oct 19 '22 17:10

Blender