html - Positioning a div over a table row -
how can position div on table row inside table? div size of row on covers completely. appreciated, thank in advance!!
this have:
<table> <tr style="position: relative;"> <td> <div class="picturebox"> <img src="img/avatar/avatar1.jpg"> </div> </td> <td class="agentname"> peter edwards </td> <td> 45 </td> <td> 7 </td> <td> $2,900 usd </td> <td> $1,100 usd </td> <td> $4,000 usd </td> <div style="position: absolute; background: #eee; width:100%; top: 10px;">test</div> </tr> </table>
hmmm... weird when try here works... must have element table messing positioning...
you put on it?
<table style="width:100%"> <div> <tr> <td>eve</td> <td>jackson</td> <td>94</td> </tr> </div> </table>
Comments
Post a Comment