In twitter bootstrap documentation, there is an interesting way to append a button right next to the input.
Just an example for illustration:
<div class="input-append">
<input class="span2" id="appendedInputButton" type="text">
<button class="btn" type="button">Go!</button>
</div>
In my case I am trying to utilize this concept but the button is slightly bigger (by one pixel) I can't figure out what is causing this.

I have created a fiddle, I hope someone can point me to the right direction.