The content of the commonly used input text box is automatically vertically centered and the default prompt text is empty when clicked

The content of the commonly used input text box is automatically vertically centered and the default prompt text is empty when clicked
Three functions:

1. Automatic vertical centering of content
2. The default prompt text is displayed in gray
3. Click to become empty

Copy code
The code is as follows:

<input type="text" name="wd1" id="qy_1" maxlength="100" style="color:gray;width:199px;height:30px;line-height:30px;" autocomplete="off" value="Please enter the company name" style="color:gray;" onfocus="javascript:if(this.value == 'Please enter the company name') this.value = ''; this.style.color='gray';" onblur="if(this.value == '') {this.value = 'Please enter the company name'; this.style.color = 'gray';}">

<<:  Pure CSS to achieve the text description of semi-transparent effect when the mouse is placed on it (must read for novices)

>>:  How to query data from multiple unrelated tables and paging in Mysql

Recommend

Detailed explanation of JavaScript's garbage collection mechanism

Table of contents Why do we need garbage collecti...

HTML table markup tutorial (22): row border color attribute BORDERCOLORLIGHT

Within rows, light border colors can be defined i...

The difference and usage of Ctrl+z, Ctrl+c and Ctrl+d in Linux commands

What does Ctrl+c, Ctrl+d, Ctrl+z mean in Linux? C...

Summary of 10 common HBase operation and maintenance tools

Abstract: HBase comes with many operation and mai...

MySQL cross-database transaction XA operation example

This article uses an example to describe the MySQ...

Detailed explanation of Vue components

<body> <div id="root"> <...

Solution to Chinese garbled characters when operating MySQL database in CMD

I searched on Baidu. . Some people say to use the...

Detailed explanation of MySQL data rows and row overflow mechanism

1. What are the formats of lines? You can see you...

Implementation of webpack code fragmentation

Table of contents background CommonsChunkPlugin s...

Analysis and solution of Chinese garbled characters in HTML hyperlinks

A hyperlink URL in Vm needs to be concatenated wit...

VMware virtualization kvm installation and deployment tutorial summary

Virtualization 1. Environment Centos7.3 Disable s...

How to configure CDN scheduling using Nginx_geo module

Introducing the Geo module of Nginx The geo direc...

Vue uses Baidu Maps to realize city positioning

This article shares the specific code of Vue usin...

Solution to high CPU usage of Tomcat process

Table of contents Case Context switching overhead...