Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Created April 15, 2021 07:50
Show Gist options
  • Save wpweb101/48e89f6997fcad7a4753e13adf0b00ed to your computer and use it in GitHub Desktop.
Save wpweb101/48e89f6997fcad7a4753e13adf0b00ed to your computer and use it in GitHub Desktop.
Incorrect Style Selector
registrationForm { /* Don't use camelcase */
background: #fff;
}
.registration_form { /* Don't use underscore */
color: #000;
}
body div form.registration_form { /* Don't use over qualification */
color: #000;
}
input[type=checkbox] { /* it should be type="checkbox" */
margin: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment