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
Role of CSS :required Selector
Use the CSS :required selector to style <input> elements with a "required" attribute. You can try to run the following code to implement the :required selector:
Example
<!DOCTYPE html>
<html>
<head>
<style>
input:required {
background-color: orange;
}
</style>
</head>
<body>
<form>
Subject: <input type = "text" name = "subject" value = "C++"><br>
Student: <input type = "text" name = "student" value = "Amit" required><br>
</form>
</body>
</html> Advertisements
