In this code below you will see the "Upload image" text in first td
has moved down (because of multiline input in next td
). But I want is this text to be fixed at the top.
How can I do it?
<table>
<tr>
<td> Upload Image </td>
<td> <input type="file" name="images[]" /> <br>
<input type="file" name="images[]" /> <br>
<input type="file" name="images[]" /> <br>
<input type="file" name="images[]" /> <br>
</td>
</tr>
</table>
Use
vertical-align: top
to thetd
with text - see demo below: