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 the new CSS display:box property

1. display:box; Setting this property on an eleme...

Solution to Vue3.0 error Cannot find module'worker_threads'

I'll record my first attempt at vue3.0. When ...

How to turn off eslint detection in vue (multiple methods)

Table of contents 1. Problem Description 2. Probl...

Web data storage: Cookie, UserData, SessionStorage, WebSqlDatabase

Cookie It is a standard way to save the state of ...

Implementation example of video player based on Vue

When the existing video player cannot meet the ne...

Docker installation steps for Redmine

Download the image (optional step, if omitted, it...

Vue implements weather forecast function

This article shares the specific code of Vue to r...

How to clear the validation prompt in element form validation

Table of contents Problem scenario: Solution: 1. ...

Detailed explanation of Linux commands and file search

1. Perform file name search which (search for ...

Master-slave synchronization configuration of Mysql database

Table of contents Mysql master-slave synchronizat...

Implementation of Mysql User Rights Management

1. Introduction to MySQL permissions There are 4 ...

Basic usage and examples of yum (recommended)

yum command Yum (full name Yellow dog Updater, Mo...