<table>
<tr>
<td>
random text here
<textarea value=""></textarea>
</td>
</tr>
</table>
In the browser the text is at the bottom. how do i make it center or to top? vertical align on TD doesnt seem to work
In the browser the text is at the bottom. how do i make it center or to top? vertical align on TD doesnt seem to work |
|||
|
|
|
Text is rendered along a line. Inline elements (such as the textarea) are also rendered on that line. The text is at the bottom of the table cell because it sits on the same line that the textarea sits on and that textarea takes up the entire height of the cell. You want to change the position of the textarea on that line, but you can do so:
|
|||
|
|
|
gathcea: You can put your text in a row above:
Or use a line break to put the text area underneath it:
|
|||
|
|