Created
April 15, 2021 07:50
-
-
Save wpweb101/48e89f6997fcad7a4753e13adf0b00ed to your computer and use it in GitHub Desktop.
Incorrect Style Selector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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