Faced such a problem.
In Twitter Bootstrap, the element is not vertically aligned (centered) inside the block.
HTML code:
<div id="box"> <p>выравниваемый элемент</p> </div>
CSS:
#box { height: 40px; border: 1px solid #fff; display: table-cell; vertical-align: middle; }
Without using this framework, everything works correctly.