- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Combinators
Combinators in CSS are special selectors that define relationships between different elements in your HTML document. They are used to target elements based on their position and hierarchy within the document. There are four main types of combinators in CSS:
Descendant Selector (space): This combinator selects all elements that are descendants of a specified element. For example, div p
will select all <p>
elements inside <div>
elements.
Child Selector (>): It selects all elements that are direct children of a specified element. For example, div > p
will select all <p>
elements that are immediate children of <div>
elements.
Adjacent Sibling Selector (+): This combinator is used to select an element that is directly after another specific element. For example, div + p
will select the first <p>
element that is placed immediately after <div>
elements.
General Sibling Selector (~): It selects all elements that are siblings of a specified element. For example, div ~ p
will select all <p>
elements that are siblings of <div>
elements, regardless of whether they are immediately adjacent12.
Here’s a quick example to illustrate how combinators work:
CSS
/* Descendant combinator */
article div p {
color: blue;
}
/* Child combinator */
article > p {
color: green;
}
/* Adjacent sibling combinator */
h1 + p {
color: red;
}
/* General sibling combinator */
h1 ~ p {
color: orange;
}
In this CSS:
- All
<p>
elements inside a<div>
that is inside an<article>
will be blue. - Only direct child
<p>
elements of<article>
will be green. - Only the
<p>
element immediately following an<h1>
will be red. - All
<p>
elements that are siblings of an<h1>
and come after it in the document will be orange.
Combinators are a powerful feature in CSS that allow for more precise and flexible styling of HTML documents.