CSS: Selectors

Learn how to target HTML elements using different types of CSS selectors.

Types of CSS Selectors

Example: CSS Selectors

/* Example */
p {
    color: blue;
}
.highlight {
    background-color: yellow;
}
#main-title {
    font-size: 2em;
}
input[type="text"] {
    border: 1px solid #ccc;
}
div p {
    margin-bottom: 10px;
}
h1, h2, h3 {
    font-family: Arial, sans-serif;
}
        

This example demonstrates different ways to select and style HTML elements.

Practice

Try experimenting with selectors:

Continue Learning

Quick Check

Which symbol prefixes an ID selector?

Quick Check

Which brackets are used for attribute selectors?