I'm trying to absolute position a p element inside a table. I tried to make <td> have position relative but it doesn't seem to work.
<td style="position:relative;">
<p style="position:absolute; bottom:0px;"
</td>
Does not work! But this does..
<td>
<div style="position:relative";>
<p style="position:absolute; bottom:0px;"> Success </p>
</div>
</td>
I'm confused why td cant be relative and if using a DIV to absolute position elements inside a <td> is the only option?