I'm trying to put a comment box within a table (As per assignment request) and my cursor position is in the middle of the box, rather than the top left as it should be.
HTML code:
<tr>
<td>Comments: <input id="comment" type="text" name="Comment" class="comment"/></td>
</tr>
CSS code:
#comment {
float: right;
display: block;
padding-right: 10px;
width:70%;
height:100px;
}