When the height attribute of Text is defined, the text entered in Text is not vertically centered. However, you can add CSS to control it so that the entered text is vertically centered to make the web page more perfect. Copy codeThe code is as follows: < head> <br>#text { <br>height:20px; <br>vertical-align:middle; <br>line-height:20px; /* line-height must be equal to height*/ <br>} <br>