惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
F
Fortinet All Blogs
H
Help Net Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
MyScale Blog
MyScale Blog
B
Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
IT之家
IT之家
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
博客园_首页
L
LangChain Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Selectors and its uses in HTML & CSS
Kamalesh AR · 2026-05-27 · via DEV Community

Today i had Task to learn about the selectors using in HTML&CSS, how to use why it used to style. By using the selectors, what is benefits and what happens while using the selectors.

Selectors

A CSS selector is the first part of a CSS Rule. It is a pattern of elements and other terms that tell the browser which HTML elements should have the CSS property values inside the rule applied to them. The element or elements selected by the selector are referred to as the subject of the selector.

In earlier articles, you met various selectors and learned that there are selectors that target the document in different ways; for example, by selecting an element such as h1, or a class such as .special. Let's start by recapping the main ones you've already seen.

We can divide CSS selectors into five categories:

  • Simple selectors (select elements based on name, id, class)
  • Combinator selectors (select elements based on a specific relationship between them)
  • Pseudo-class selectors (select elements based on a certain state)
  • Pseudo-elements selectors (select and style a part of an element)
  • Attribute selectors (select elements based on an attribute or attribute value)

CSS Selectors are patterns used in CSS to select and target HTML elements so that styles can be applied to them. They define which elements on a web page should receive specific styling rules.

  • Used to select HTML elements based on tag name, class, id, or attributes.
  • Help apply styles like color, font, spacing, and layout.
  • Make web pages structured, consistent, and visually appealing.

Types of selectors

1. Simple selectors

Basic selectors in CSS are simple tools used for selecting by HTML element name (e.g., h1), class (.class Name), ID (#idName), or universally (* for all elements).

Universal selector(*):
Selects all elements on the page and applies the same style universally.

Example: Setting the font color for every element.


    <style>
        * {
            color: red;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

Element selector:
Targets all elements of a specific type, such as paragraphs or headers.

Example: Setting a common font size for all paragraphs

   <style>
        p {
            font-size: 16px;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

Class selector(.):
Applies styles to elements with a specific class attribute.

Example: Making all buttons have a blue background.

   <style>
        .button {
            background-color: blue;
            color: white;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

ID selector(#):
Styles a single element identified by its unique id.

Example: changing the background color of a header.

   <style>
        #header {
            background-color: gray;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

2. Combination selectors(TBD)

Used to define relationships between selectors, allowing you to style elements based on their hierarchy or positioning in the document. Common combinators include descendant ( ), child (>), adjacent sibling (+), and general sibling (~).

Descendant Selectors:
Targets an element inside another, such as paragraphs inside div .

Example: Styling paragraphs inside a div.(TBD)

  <style>
        div p {
            color: red;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

Child Selector (>):
They only affects the direct child elements of a parent.

Example: Styling direct children paragraphs of a div.(TBD)

 <style>
        div>p {
            margin-left: 20px;
        }
  </style>

Enter fullscreen mode Exit fullscreen mode

Adjacent Sibling Selector (+):
Styles an element immediately following another .

Example: Making the first paragraph bold after an h1.(TBD)

    <style>
        h1+p {
            font-weight: bold;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

General Sibling Selector (~):
Styles all siblings that follow a specific element.

Example: Italicizing all paragraphs following an h1.

   <style>
        h1~p {
            font-style: italic;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

Attribute selector(TBD)

Attribute selectors in CSS target elements based on the presence or value of their attributes.

Presence Selector:
It selects elements that contain a specific attribute.

Example: styling all inputs with a type attribute.

    <style>
        input[type] {
            border: 2px solid black;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

Attribute Value Selector:
It targets elements with a particular attribute value.

Example: Styling text inputs.

   <style>
        input[type="text"] {
            background-color: yellow;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

Substring Matching(^=):
It matches elements where the attribute contains a substring.

Example: Styling links with https in their href.

   <style>
        a[href^="https"] {
            color: green;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

3. Pseudo-Classes(TBD)

Pseudo-classes in CSS define the special states of elements for styling.

:hover:
Styles elements when the user hovers over them.

Example: Changing the color of a link when hovered.

   <style>
        a:hover {
            color: red;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

:focus:
Styles the elements when the user focus on any particular element.

   <style>
        input:focus {
            outline: 3px solid red;
        }
    </style>

Enter fullscreen mode Exit fullscreen mode

Pseudo-Elements(TBD)

Pseudo-elements allow you to target and style specific parts of an element, such as inserting content before or after it.

  • They can be used to style parts of text, like the first letter or line of a paragraph.
  • Pseudo-elements are commonly used to enhance and beautify the internal content of elements.

::before:
To insert some content before an element.

<style>
    h1::before {
        content: "★ "
    }
</style>

Enter fullscreen mode Exit fullscreen mode

::after:
To insert some content after an element.

<style>
    h1::after {
        content: "☀ ";
        color: orangered;
    }
</style>

Enter fullscreen mode Exit fullscreen mode

::first-line:
Styles the first line of text within a block element. Line breaks mark the beginning of a new line.

<style>
    p::first-line {
        color: red;
    }
</style>

Enter fullscreen mode Exit fullscreen mode

::placeholder:
Styles the placeholder of a specific input field.

<style>
    input::placeholder {
        font-size: 20x;
        font-family: sans-serif;
        font-weight: 900;
    }
</style>

Enter fullscreen mode Exit fullscreen mode

References
1.https://www.geeksforgeeks.org/css/css-selectors/
2.https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Styling_basics/Basic_selectors
3.https://www.w3schools.com/css/css_selectors.asp
4.https://mimo.org/glossary/css/selectors