Is there a way to perfectly align a submit button to the right of a text or search box,
matching the height of the search box,
and eliminating any unwanted white space between them?
This is my current setup:
<input type="text" value="" placeholder="search text here" style="display: block; width: 100px; height: 32px; margin: 0px; padding: 0px; float: left;" />
<input type="submit" value=" OK " style="display: block; margin: 0px; width: 20px; height: 32px; padding: 0px; float: left; border-left: none;" />
However, the button doesn't match the height of the textbox,
and most importantly, I can't seem to remove that small space between the text-box and button.