I have a question about html tables?
How do I align text to the top of the cell in html tables without using css?
Public Comments
- In the HTML code put the valign keyword: <table valign="top">
- Well, technically you want <table> <tr> <td valign="top">My top aligned text</td> </tr> </table>
Powered by Yahoo! Answers