CSS selector for a child element whose parent element has a certain class

Sunil

I need to specify CSS in a style sheet file for the strong element inside a div as in code below. This strong element is inside a parent div whose class is commandBar.

<strong>Outside Div</strong>
<div class='commandBar'>
    <button class='dBtn'>Delete</button>
    <strong>My Name</strong>
    <button class='aBtn'>Add</button>
</div>
Josh Crozier

To select strong elements that are descendants of an element with class commandBar, use the descendant combinator along with a class selector:

.commandBar strong

In order to only select direct children strong elements, use the child combinator, >:

.commandBar > strong

Depending on your markup, you may also want to specify the element type that has the class .commandBar (in this case, div):

div.commandBar strong

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

jQuery - How to add css to a parent element if child element has certain css class

From Dev

Applying class to an element if it has a child with certain class

From Dev

Get parent with certain class from child element

From Dev

CSS/Xpath selector for an element with a certain class containing an element with certain text

From Dev

Changing the CSS class of a child element on parent hover

From Dev

Apply css style to child element of parent class

From Dev

AngularJs If a parent element has class, hide child element

From Dev

Selector for the child element for the current parent element

From Dev

Add a css class to an element if the element has a certain text via javascript

From Dev

CSS selector if previous element has child with different className

From Dev

How to select a child element of parent by jquery selector?

From Dev

Add class to child element but not to parent

From Java

CSS selector for first element with class

From Dev

CSS selector for an img element with class

From Dev

CSS selector for the first element of class

From Dev

CSS selector - Select a element who's parent(s) has a sibling with a specific element

From Dev

CSS focus on child element change a parent element

From Dev

How to give an element with an id a certain CSS property if it has a class?

From Dev

Selecting multiple child elements of a certain parent element

From Dev

How to chain a class to an element with a parent selector in SASS

From Dev

Use CSS Child and Last Selector on same element

From Dev

CSS child's element selector - HTML Email

From Dev

css active selector exception for a child element

From Dev

css active selector exception for a child element

From Dev

CSS child's element selector - HTML Email

From Dev

CSS Selector for nth element regardless of parent

From Dev

CSS Selector-How to locate Parent Element

From Dev

jQuery to PHP: Add a selector class to parent element if more than 2 child elements

From Dev

scroll property in a child element of a parent div whose position is fixed

Related Related

  1. 1

    jQuery - How to add css to a parent element if child element has certain css class

  2. 2

    Applying class to an element if it has a child with certain class

  3. 3

    Get parent with certain class from child element

  4. 4

    CSS/Xpath selector for an element with a certain class containing an element with certain text

  5. 5

    Changing the CSS class of a child element on parent hover

  6. 6

    Apply css style to child element of parent class

  7. 7

    AngularJs If a parent element has class, hide child element

  8. 8

    Selector for the child element for the current parent element

  9. 9

    Add a css class to an element if the element has a certain text via javascript

  10. 10

    CSS selector if previous element has child with different className

  11. 11

    How to select a child element of parent by jquery selector?

  12. 12

    Add class to child element but not to parent

  13. 13

    CSS selector for first element with class

  14. 14

    CSS selector for an img element with class

  15. 15

    CSS selector for the first element of class

  16. 16

    CSS selector - Select a element who's parent(s) has a sibling with a specific element

  17. 17

    CSS focus on child element change a parent element

  18. 18

    How to give an element with an id a certain CSS property if it has a class?

  19. 19

    Selecting multiple child elements of a certain parent element

  20. 20

    How to chain a class to an element with a parent selector in SASS

  21. 21

    Use CSS Child and Last Selector on same element

  22. 22

    CSS child's element selector - HTML Email

  23. 23

    css active selector exception for a child element

  24. 24

    css active selector exception for a child element

  25. 25

    CSS child's element selector - HTML Email

  26. 26

    CSS Selector for nth element regardless of parent

  27. 27

    CSS Selector-How to locate Parent Element

  28. 28

    jQuery to PHP: Add a selector class to parent element if more than 2 child elements

  29. 29

    scroll property in a child element of a parent div whose position is fixed

HotTag

Archive