<img align> & <a target> alternative

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
User avatar
anjanesh
DevNet Resident
Posts: 1679
Joined: Sat Dec 06, 2003 9:52 pm
Location: Mumbai, India

<img align> & <a target> alternative

Post 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
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

Post Reply