Bootstrap input box height has shrunk
twitter-bootstrap
Solution
The browser is in quirks mode, because you didn't specify the doctype of the page.
Problem
On my site, I am using the bootstrap box, however the line height seems to have shrunk, and I cannot for the life of me figure out why. I've not modified any bootstrap CSS, only my own but I don't believe this is interfering. The code I am using is: ``` <div class="pull-left"> <h3>Search for devices</h3> <p>Use the search form below to search for your device.</p> <div class="input-append"> <input class="span2" id="appendedInputButtons" type="text"> <button class="btn" type="button">Search</button> </div> </div> ``` Live example here: http://dev.romwars.com/# Anyone have any suggestions?