Skip to content

Instantly share code, notes, and snippets.

@CalledByThe4ire
Forked from ultrox/resetFieldset.css
Created June 6, 2020 06:04
Show Gist options
  • Save CalledByThe4ire/bcfcbf09e35be6c9934c1f5e0b89d445 to your computer and use it in GitHub Desktop.
Save CalledByThe4ire/bcfcbf09e35be6c9934c1f5e0b89d445 to your computer and use it in GitHub Desktop.
Reset fieldset and legend styles
/* From http://thatemil.com/blog/2015/01/03/reset-your-fieldset/ by Emil Björklund */
legend {
display: table;
padding: 0;
}
fieldset {
border: 0;
margin: 0;
min-width: 0;
padding: 0.01em 0 0 0;
}
body:not(:-moz-handler-blocked) fieldset {
display: table-cell;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment