Example of label aligned at the bottom, label positioned before the textarea line – in HTML:
<label>Message:</label> <textarea name="test" rows="5" cols="10"></textarea>
By CSS you can align the label (in this case, Message:) to be position at the top:
label { vertical-align:top; }
Looking for more? See all posts on the blog.
