This is similar to the expected application behavior of vertical-align: top to the div. If you need a simple fix, just apply the line height to the div, which is the height of the input field. This will vertically center the text to the right of the input.
div {
vertical-align: top;
font-size: 11px;
line-height: 16px;
}
source
share