Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save taliwalt/16b6abb89b4d29c534ad to your computer and use it in GitHub Desktop.
Save taliwalt/16b6abb89b4d29c534ad to your computer and use it in GitHub Desktop.
<fieldset>
<label for="email">Email:</label>
<input type="email" name="email">
</fieldset>
<fieldset>
<label for="emailRequired">Email (required):</label>
<input type="email" name="emailRequired" required>
</fieldset>
input:invalid {
background: hsla(0, 90%, 70%, 1);
}
input:valid {
background: hsla(100, 90%, 70%, 1);
}
body {
padding: 3em;
}
fieldset {
border: 0;
}
input {
padding: 0.25em 0;
margin-bottom: 0.75em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment