Page 1 of 1

<img align> & <a target> alternative

Posted: Wed Feb 23, 2005 2:59 am
by anjanesh
2 things for xhtml 1.1 complaint

Code: Select all

<a href="x.php" target="_blank">
target seems to be deprecated - so what do I have to add in order to open the link in a new window/tab

Code: Select all

<img align="top" src="a.jpg" alt="x"/>
I need the images aligned to the top and style="text-align:value" will not do.
Actually its like this :

Code: Select all

<td>
<img align="top" src="x.jpg" alt="" />
<a href="x.php" target="_blank">link</a>
</td>
How do I get this resolved ?
<td style="text-align:value"> is not doing the same thing as <img align="top" as text-align:top is not available.
Thanks

Posted: Wed Feb 23, 2005 3:09 am
by feyd