Welcome to Bucaro TecHelp!

Bucaro TecHelp
HTTPS Encryption not required because no account numbers or
personal information is ever requested or accepted by this site

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact RSS News Feeds News Feeds

Descendant Selector

A CSS style sheet consists of rules that define how html elements should be displayed on a webpage. Each rule consists of one or more selectors, one or more properties, and one or more values that each property should be set to.

You can use the descendant selector to select elements that are descendants of other elements. What if you created a selector to apply to all paragraph elements. You also want to the rules to apply to paragraph elements that are nested within div elements, but instead of blue text you want to display red text in paragraphs nested within divs. You could create a descendant selector as shown below.

p
{
font-family: verdana;
font-size:12px;
font-weight: bold;
color:blue;
}
div p
{
color:red;
}

<p>Paragraph not nested within div</p>

<div>
<p>Paragraph nested within div</p>
</div>

In the code shown above, note the descendant selector which is the parent element selector separated by a space from the descendant element selector. Descendant selectors can be also used with class selectors and id selectors.

In the example shown below, the class mystyle sets the text color to blue for the paragraph outside the div. But the descendant selector sets the text color to red for the paragraph nested in the div.

.mystyle
{
font-family: verdana;
font-size:12px;
font-weight: bold;
color:blue;
}
.mystyle p
{
color:red;
}

<p class="mystyle">Paragraph not nested within div</p>

<div class="mystyle">
<p>Paragraph nested within div</p>
</div>

In the example below a selector applies to all paragraph elements. The same rules apply to the paragraph that's nested within the div with the id nav, but instead of blue text the descendant selector applies the rule to display red text in paragraphs nested within the div.

p
{
font-family: verdana;
font-size:12px;
font-weight: bold;
color:blue;
}
#nav p
{
color:red;
}

<p>Paragraph not nested within div</p>

<div id="nav">
<p>Paragraph nested within div</p>
</div>

Remember, descendant selectors apply style rules to elements that are contained within other elements. The descendant selector is the parent element selector separated by a space from the descendant element selector.

More CSS Quick Reference:
• position:relative
• Set an Element's Margin
• nth-child Selector
• CSS background-clip Property
• Style the First Line
• Use an External Style Sheet
• Set an Element's Visibility
• How to Use a CSS ID Selector
• Set the Font Slant
• Set the Text Decoration

RSS Feed RSS Feed

Follow Stephen Bucaro Follow @Stephen Bucaro



Fire HD
[Site User Agreement] [Privacy Policy] [Site map] [Search This Site] [Contact Form]
Copyright©2001-2024 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268