I am just starting to make a website in Dreamweaver with tables but the cursor seems to be stuck in the middle on the table, when I go to type in content I want it to start at the top of the table. How can I fix this?
<table> <tr valign="top"> <td>Text is up top</td> </tr> <tr> <td>Text is centered</td> </tr> </table> Code (markup): You can put that line in the table if you want everything to align top. <table valign="top"> <tr> <td>Woohooo, top aligned text!</td> </tr> </table> Code (markup):