Hi experts please help me
i want to don't view yellow area and assign position of image relative like when used absolute position for image, in code below:
i want to don't view yellow area and assign position of image relative like when used absolute position for image, in code below:
Code:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <style type="text/css"> .back { background-color: Yellow; } .img { position: relative; top: 50px; left: 400px; } </style> </head> <body> <table class="back"> <tr> <td> <img class="img" src='http://clarifying.files.wordpress.com/2008/04/quill_pen.png' /> </td> </tr> </table> </body> </html>
Comment