Control the vertical center of the text in the HTML text box through CSS

Control the vertical center of the text in the HTML text box through CSS
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.

<<:  Analysis of the issues and solutions for repeated submission, repeated refresh, and backoff prevention

>>:  Detailed explanation of JavaScript's built-in Date object

Recommend

How to import Chinese data into csv in Navicat for SQLite

This article shares with you the specific method ...

Comparing the performance of int, char, and varchar in MySQL

There are many seemingly true "rumors" ...

How to configure Bash environment variables in Linux

Shell is a program written in C language, which i...

Solve the problem of inconsistency between mysql time and system time in docker

Recently, when I installed MySQL in Docker, I fou...

Three ways to create a gray effect on website images

I’ve always preferred grayscale images because I t...

HTML basics HTML structure

What is an HTML file? HTML stands for Hyper Text M...

MySQL Quick Data Comparison Techniques

In MySQL operation and maintenance, a R&D col...

Can't connect to local MySQL through socket '/tmp/mysql.sock' solution

Error message: ERROR 2002: Can't connect to l...

How to use docker to build redis master-slave

1. Build a Docker environment 1. Create a Dockerf...

Detailed explanation of the basic commands of Docker run process and image

Table of contents 1. Run workflow 2. Basic comman...

Nginx configuration based on multiple domain names, ports, IP virtual hosts

1. Type introduction 1.1 Domain-based virtual hos...

The difference and reasons between the MySQL query conditions not in and in

Write a SQL first SELECT DISTINCT from_id FROM co...