Car Name:
<%=Model.Dat...">

How to align text in the "upper right"?

I have the following table.

<table> <tr> <td align="right"> <b>Car Name:</b> </td> <td> <div><%=Model.DataMayLoad1%></div> <div><%=Model.DataMayLoad2%></div> <div><%=Model.DataMayLoad3%></div> <div><%=Model.DataMayLoad4%></div> </td> </tr> </table> 

The column "Vehicle Name:" is aligned to the right, but in the center. Is there a way to align this column in the upper right corner?

+4
source share
2 answers
 <table> <tr> <td align="right" style="vertical-align: top;"> <b>Car Name:</b> </td> <td> <div><%=Model.DataMayLoad1%></div> <div><%=Model.DataMayLoad2%></div> <div><%=Model.DataMayLoad3%></div> <div><%=Model.DataMayLoad4%></div> </td> </tr> </table> 
+8
source

Usage: <td align="right" valign="top">

-1
source

All Articles