I'm attempting to position the text in an Input Text Field to display at the top left corner, but currently it is centered both vertically and horizontally in the middle.
<input class="userInput" type="text">
<style>
.userInput {
text-align: left;
margin: 1px;
padding: 1px;
width: 500px;
height: 300px;
vertical-align: top;
}
</style>