I want to vertically center the text entered in input text boxes on the page.
Typical way to achieve this is to set the line-height and height equal. This works on pre
You should use percentage for the line-height.
.txtBox { line-height: 100%; height: 3em; }