I've been trying to figure out why the search button is still showing at the bottom left and creating an "l" shape even though I'm using style="overflow: hidden; padding-right: .5em;". Does anyone have any ideas as to what might be causing this issue?
#searchbartop{
margin:auto;
vertical-align:middle;
position:absolute;
margin-left:25%;
}
#searchbartoptext{
width:600%;
}
<form id="searchbartop">
<input type="text" placeholder="Search..." id="searchbartoptext" style="overflow: hidden; padding-right: .5em;" required>
<input type="button" style="width: auto;" value="Search">
</form>