Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techxdeveloper/41f56f4f0a5aac7815f387ad2e0bd570 to your computer and use it in GitHub Desktop.
Save techxdeveloper/41f56f4f0a5aac7815f387ad2e0bd570 to your computer and use it in GitHub Desktop.
CSS Psuedo Class Selector (:required and :optional)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Psuedo Class Selector (:required and :optional)</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;
}
input:required {
background: #00bcd4;
color: #f5f5f5;
}
input:optional {
background: #212121;
color: #f5f5f5;
}
</style>
</head>
<body>
<div>
<h1>CSS Psuedo Class Selector (:required and :optional)</h1>
<form action="">
First Name: <input type="text" value="Bruce" required><br>
Last Name: <input type="text" value="Wayne"><br>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment