In today's digital world, CSS (Cascading Style Sheets) is the key to creating visually appealing and functional websites. Beneath every well-crafted layout lie precise instructions that enable you to style specific elements on your page. CSS selectors allow you to target HTML elements based on their type, class, ID, or even specific states like hover and active.

In this blog post, we dive deep into the fascinating world of CSS selectors. Whether you’re new to web development or have years of experience, this guide offers a clear overview and practical examples—from basic element selectors to complex combinations and pseudo-classes. Discover how to control your website’s structure and enhance user experience using a variety of selectors, all demonstrated with sample HTML and CSS code.

1. Element Selector

Description:
Selects all instances of a specific HTML tag.
Example: All <p> elements.

HTML:

<!-- All <p> elements are selected -->
<p>This is a paragraph.</p>

CSS:

p {
 color: blue;
}


2. Class Selector

Description:
Targets elements based on their class attribute.
Example: An element with the class example.

HTML:

<!-- The element with the class "example" is highlighted -->
<div class="example">Example text</div>

CSS:

.example {
 background-color: yellow;
}

3. ID Selector

Description:
Targets a single element by its unique ID (IDs should be unique within the page).
Example: The element with the ID header.

HTML:

<!-- The element with the ID "header" is selected -->
<header id="header">My Website</header>

CSS:

#header {
 font-size: 24px;
}


4. Descendant Selector

Description:
Selects elements that are nested within a parent element, regardless of depth.
Example: A <p> element inside an element with the class container.

HTML:

<!-- The <p> tag inside the element with the class "container" is targeted -->
<div class="container">  
<p>Paragraph inside container.</p>
</div>

CSS:

.container p {
 color: green;
}


5. Child Selector

Description:
Targets only the immediate (direct) children of a parent element.
Example: A <p> that is a direct child of .container.

HTML:

<div class="container">  
<!-- This <p> is a direct child -->  
<p>Direct child</p>  
  <div>    
<!-- This <p> is not a direct child -->    
<p>Not a direct child</p>  
  </div>
</div>

CSS:

.container > p {
 font-weight: bold;
}

6. Adjacent Sibling Selector

Description:
Selects the element that immediately follows a specific element.
Example: The first <p> that directly follows an <h1>.

HTML:

<h1>Heading</h1>
<!-- This <p> immediately follows the <h1> -->
<p>First paragraph after heading</p>
<p>Second paragraph</p>

CSS:

h1 + p {
 margin-top: 0;
}

7. General Sibling Selector

Description:
Selects all sibling elements that follow a specified element.
Example: All <p> elements that are siblings of an <h1>.

HTML:X

<h1>Heading</h1>
<!-- All following <p> elements that are siblings of the <h1> are selected -->
<p>First paragraph</p>
<p>Second paragraph</p>

CSS:

h1 ~ p {
 line-height: 1.5;
}


8. Attribute Selector

Description:
Targets elements based on the presence or value of an attribute.
Example: All <input> elements with type="text".

HTML:PPP

<!-- Only the <input> with type="text" is targeted -->
<input type="text" placeholder="Enter text here...">
<input type="password" placeholder="Password">

CSS:

input[type="text"] {
 border: 1px solid #000;
}

9. Pseudo-Class :hover

Description:
Applies styles when the user hovers the mouse over an element.
Example: A link changes color when hovered over.

HTML:

<!-- The link is highlighted on hover -->
<a href="#">Link</a>

CSS:

a:hover {
 color: red;
}


10. Pseudo-Class :active

Description:
Applies styles while an element is being activated (e.g., clicked).
Example: A button shows a different background color when pressed.

HTML:

<!-- The button is styled while it is active (being clicked) -->
<button>Click me</button>

CSS:

button:active {
 background-color: #ccc;
}


11. Pseudo-Class :focus

Description:
Applies styles when an element receives focus, such as via clicking or tabbing.
Example: An <input> field is highlighted when focused.

HTML:

<!-- The <input> field is highlighted when it receives focus -->
<input type="text">

CSS:

input:focus {
 outline: 2px solid blue;
}


12. Pseudo-Class :nth-child()

Description:
Allows you to select one or more children of a parent element based on their position.
Example: The second <li> in a list.

HTML:

<!-- The second <li> in the list is selected -->
<ul>  
 <li>Item 1</li>  
 <li>Item 2</li>  
 <li>Item 3</li>
</ul>

CSS:

ul li:nth-child(2) {
 font-weight: bold;
}


13. Pseudo-Elements ::before and ::after

Description:
Insert content before or after an element’s content without altering the HTML.
Example: Display text before and after an element with the class box.

HTML:

<!-- The element with the class "box" is enhanced with extra content -->
<div class="box">Content</div>

CSS:

.box::before {
 content: "Start - ";
}
.box::after {
 content: " - End";
}


14. Grouping Selector

Description:
Combines multiple selectors to assign the same styles to all of them.
Example: Apply the same margin to <h1>, <h2>, and <h3> elements.

HTML:

<!-- All headings (<h1>, <h2>, <h3>) are selected -->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>

CSS:

h1, h2, h3 {
 margin-bottom: 10px;
}


15. Universal Selector

Description:
Selects every element on the page, often used to apply global styles.
Example: Set a uniform box-sizing for all elements.

HTML:

<!-- Every HTML element on the page is targeted -->
<div>Div</div>
<p>Paragraph</p>
<span>Span</span>

CSS:

* {
 box-sizing: border-box;
}


16. Complex Selector: Combining Classes and Pseudo-Classes

Description:
Combines multiple selectors to create more specific rules.
Example: List items in a menu that change appearance on hover.

HTML:

<!-- List items within a menu that change on hover -->
<ul class="menu">  
 <li class="item">Home</li>  
 <li class="item">About</li>  
 <li class="item">Contact</li>
</ul>

CSS:

.menu .item:hover {
 background-color: #f0f0f0;
}


17. Pseudo-Class :visited

Description:
Applies styles to links that have already been visited by the user.
Example: A link changes color after being clicked.

HTML:

<!-- The link changes appearance after it has been visited -->
<a href="https://example.com">Example</a>

CSS:

a:visited {
 color: purple;
}


18. Pseudo-Classes :first-child and :last-child

Description:
Select the first or last child element within a parent.
Example: The first and last list items receive special styling.

HTML:

<ul>
  <!-- First <li> element -->
  <li>First Element</li>
  <li>Second Element</li>
  <!-- Last <li> element -->
  <li>Third Element</li>
</ul>

CSS:

ul li:first-child {
 font-style: italic;
}

ul li:last-child {
 font-style: oblique;
}

19. Attribute Selector with Prefix

Description:
Targets elements whose attribute values start with a specific string.
Example: All elements with a class name beginning with icon-.

HTML:

<!-- All elements whose class starts with "icon-" -->
<div class="icon-home"></div>
<div class="icon-user"></div>

CSS:

[class^="icon-"] {
 width: 24px;  
 height: 24px;
}

20. Pseudo-Class :checked (for Form Elements)

Description:
Applies styles to form elements that are checked, such as checkboxes or radio buttons.
Example: A label changes color when its associated checkbox is checked.

HTML:

<input type="checkbox" id="check1">
<label for="check1">Option</label>

CSS:

input:checked + label {
 color: green;
}

21. Pseudo-Class :disabled

Description:
Applies styles to disabled form elements to visually indicate their state.
Example: A disabled input field appears with a different background.

HTML:

<!-- A disabled input field -->
<input type="text" disabled>

CSS:

input:disabled {
 background-color: #eee;
}

By understanding and using these CSS selectors, you can create finely-tuned and interactive web designs. This guide has shown you how to target elements precisely—whether by tag, class, ID, or state—to bring your web projects to the next level. Experiment with these selectors in your own projects and watch your websites transform with improved structure and dynamic effects.

About UNHYDE®

UNHYDE is a Munich-based web development agency dedicated to pushing boundaries in web development, user experience, and digital marketing. Our mission is to create high-performing digital platforms that drive meaningful customer engagement and measurable business growth. We operate internationally and are a recognized Shopify Partner agency, having successfully launched countless websites and webstores worldwide.

We're here to help !

For more insights or if you're ready to take your website to the next level, feel free to reach out to us at UNHYDE®, the web design agency. We’re always here to collaborate and craft tailored solutions that meet your unique needs.

READY. SET.

Launch

Today

get in touch

MAKE CONTACT

UNHYDE•UNHYDE•UNHYDE•UNHYDE•UNHYDE•UNHYDE•