Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Not showing a placeholder for input type=“date” field with HTML5. How to solve it?
To show it, use the following −
You can also go for CSS −
input[type="date"]::before{
color: #ffffff;
content: attr(placeholder) ": ";
}
input[type="date"]:focus::before {
content: "" !important;
} Advertisements
