I recently adjusted the size of the input box to be 500 by 500 pixels, but I noticed that the text was starting from the middle instead of the top. Despite trying to set the padding to zero, it didn't seem to have any effect. This issue is occurring within the form tag. Here's the HTML code snippet:
<form>
<input class="postbox" value="Hello."><br>
</form>
and here's the corresponding CSS code:
.postbox{
padding:0;
height:500;
width:500;}