On many websites, we have seen the input box display hint text. Let’s take a look at how to display hint text in the input box. We only need to add: placeholder="prompt text" in the <input> tag, so what if we want to change the style of the prompt text? You can set the css style like this: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>input box prompt text</title> <style> /*Change the color of the prompt text*/ input::-webkit-input-placeholder { /* WebKit browsers */ color: red; } input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: red; } input::-moz-placeholder { /* Mozilla Firefox 19+ */ color: red; } input:-ms-input-placeholder { /* Internet Explorer 10+ */ color: red; } </style> </head> <body> <input type="text" placeholder="Please enter your username" /> </body> </html> The modified prompt text style is as follows: PS: Let's take a look at the required attribute prompt text modification of the input tag in HTML5 When submitting a form, we sometimes encounter such a requirement. When the user submits without entering the required information, the prompt text needs to be changed to the prompt information we want. In this case, we can add the following statement in the input: <input type="text" placeholder="Your name" required oninvalid="setCustomValidity('Please enter your name');" oninput="setCustomValidity('');" /> This is the end of this article about modifying the input prompt text style in html. For more relevant html input text style content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! |
>>: Sharing some wonderful uses of wxs files in WeChat applet
Today I saw a blog post about input events, and o...
Download the redis image docker pull yyyyttttwwww...
Table of contents Listener watch Format Set up th...
Recently, due to business adjustments in the comp...
Table of contents 1. CDN introduction 1.1 react (...
Many web pages have small triangles in their navi...
1 Introduction Thread technology was proposed as ...
Table of contents 1. Configure Vue front end 1. D...
Preview: Code: Page Sections: <template> &l...
This article example shares the specific code for...
In the process of learning CSS3, I found that man...
To understand load balancing, you must first unde...
This article describes how to configure a seconda...
background When working on the blockchain log mod...
The VMware Workstation Pro version I use is: 1. F...