I'm trying to get a label lined up with the baseline of the first line of text in a text area.
The naive attempt:
<div style="vertical-align: baseline; display: inline-block">
<label for="comments">Comments:</label>
</div>
<div style="vertical-align: baseline; display: inline-block">
<textarea name="comments" id="comments"></textarea>
</div>
results in the label being aligned with the bottom of the text area. I'd prefer to have it lined up with the first line of the area.
Thanks.