Skip to content

hoc-demos/css-descendant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

CSS Descendant Selectors

Selects the <a> immediately under the <section> element, but not the ones within the <p> element that is a grand-child.

section > a {
    color: green;
    text-decoration: none;
}

Selects the <a> elements within the <li> grand-child elements.

ul a {
    color:deeppink;
    font-weight:800;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published