-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Some More Selectors Tag in CSS Notes #232
Comments
Hi 😄, thanks for creating your first contribution at Official-Website, do read and follow the Contribution Guidelines while contributing. |
Is anybody working on this open issue. |
@ManishBisht777 pls assign to me if nobody working on this |
I'm working on this issue |
Pls assign to @Fuzaildev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/* Child Selector (using > ) */
div>p {
background-color: green;
}
/* Descendant Selector */
.div p {
background-color: maroon;
}
The text was updated successfully, but these errors were encountered: