Skip to content
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

Create Add Some more Selectors Tag in CSS #237

Closed
wants to merge 1 commit into from

Conversation

Fuzaildev
Copy link
Contributor

  • Add More important Selectors tags that really used.
  • Essential Selectors Tag that Really used.

/* Child Selector (using > ) */
div>p {
background-color: green;
}

/* Descendant Selector */

.div p {
background-color: maroon;
}

/* Universal Selector (ALL Elements margin and padding are 0; ) */

  • {
    margin: 0;
    padding: 0;
    }

/* Pseudo Selector */

/* If you visited the website then you can change the color */
a:visited {
color: red;
}

/* If you want to change link color before visit */
a:link {
color: blueviolet;
}

Add More important Selectors tags that really used.
@vercel
Copy link

vercel bot commented Oct 22, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
frontendfreaks ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 22, 2023 2:20pm

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your pull request and welcome to our community! We will be getting back to you soon . Your patience will be greatly appreciated! Thanks! 🥳

Copy link
Member

@Vishal-raj-1 Vishal-raj-1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you have to add this in css folder basic.mdx file. Refer how other's notes and source code is added

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants