When the height attribute of Text is defined, the text entered in the Text is not vertically centered. However, you can add CSS to control it and make the entered text vertically centered to make the web page more perfect. Copy code The code is as follows:<html> <head> <style type="text/css"> #text { height:20px; vertical-align:middle; line-height:20px; /*line-height must be equal to height*/ } </style> </head> <body> <table> <input type="text" id="text"> </table> </body> </html> After adding the two attributes of verticla-align and line-height, the text in the text box is vertically centered in the text box. It should be noted that line-height must be equal to height. |
>>: Detailed explanation of JavaScript's built-in Date object
This article shares with you the specific method ...
There are many seemingly true "rumors" ...
Shell is a program written in C language, which i...
Table of contents Events in js Event Type Common ...
Recently, when I installed MySQL in Docker, I fou...
I’ve always preferred grayscale images because I t...
What is an HTML file? HTML stands for Hyper Text M...
In MySQL operation and maintenance, a R&D col...
Error message: ERROR 2002: Can't connect to l...
The scroll-view of WeChat applet has more bugs wh...
1. Build a Docker environment 1. Create a Dockerf...
Table of contents 1. Run workflow 2. Basic comman...
1. Type introduction 1.1 Domain-based virtual hos...
Temporary tables and memory tables A memory table...
Write a SQL first SELECT DISTINCT from_id FROM co...