DarkHavoc Posted October 29, 2003 Posted October 29, 2003 is there any code that does like allign top or something in html im sick of my Text on my tables moving up and down =/ Quote
TCH-Bruce Posted October 29, 2003 Posted October 29, 2003 Try valign="top" in your table cells Sorry, I thought you were asking about HTML. Quote
TCH-JimE Posted October 30, 2003 Posted October 30, 2003 You can actually align it to any part of the table. Or even use CSS so you only have to type it once! Jim Quote
DarqFlare Posted October 30, 2003 Posted October 30, 2003 Example: ><td align="center" valign="top">Text will be aligned in the center (Horizontally) and top (Vertically).</td> or ><style> td.example { text-align: center; vertical-align: top; } </style> <td class="example">Text will be aligned in the center (Horizontally) and top (Vertically).</td> Quote
DarkHavoc Posted October 31, 2003 Author Posted October 31, 2003 thanks alot guys ill try it tonight Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.