DEV Community

Cover image for CSS Selectors (part-1)
Suprabha
Suprabha

Posted on

CSS Selectors (part-1)

Selectors are used to selecting elements in an HTML document, in order to attach (style) properties to them.

The most used CSS selectors are by class and by id, nevertheless, there are many selectors which you can use easily and fairly to add styles into a set of elements.

A. Combinators

B. Attribute Selector

C. Pseudo Selector

D. Pseudo Classes

In this article, I will be talking about different selectors beyond class and id and will be covering Combinators and Attribute Selector.

We will be using below HTML snippet for all the the Attribute Selector:

<div>
    <p>First Paragraph</p>
    <p>Second Paragraph</p>
    <span>Third Span</span>
    <p>Fourth Paragraph</p>
    <ul>
        <li>First Item</li>
        <li>Second Item</li>
    </ul>
</div>

<p>Fifth Paragraph</p>
<p>Sixth Paragraph</p>
Enter fullscreen mode Exit fullscreen mode

A. Combinators

  1. Descendant Selector
  2. Universal Selector
  3. Adjacent Sibling Selector
  4. General Sibling Selector
  5. Child Selector

1️⃣ Descendant Selector

It selects an element inside another element. This selects all the p elements inside of div.

div p {
    background-color: #fdc7d5;
}
Enter fullscreen mode Exit fullscreen mode

Output:

2️⃣ Universal Selector

You can select all the elements with the universal selector.

div * {
  background-color: #fdc7d5;
}
Enter fullscreen mode Exit fullscreen mode

div * selects any element inside all div elements.

Output:

3️⃣ Adjacent Sibling Selector

It selects an element that directly follows another element.

div + p {
  background-color: #fdc7d5;
}
Enter fullscreen mode Exit fullscreen mode

This selects the p elements that directly follow div tag. Elements that follow another one are called siblings.

Output:

4️⃣ General Sibling Selector

You can select all siblings of an element that follow it. This is like the Adjacent Selector (div + p), but this one gets all of the following elements instead of one.

div ~ p {
  background-color: #fdc7d5;
}
Enter fullscreen mode Exit fullscreen mode

Output:

5️⃣ Child Selector

It selects direct children of an element. You can select elements that are direct children of other elements.

div > p {
  background-color: #fdc7d5;
}
Enter fullscreen mode Exit fullscreen mode

div > p selects all p that are direct children div.

Output:

B. Attribute Selector

It combines the attribute selector with another selector by adding it to the end.

<input type="text" placeholder="Enter Input" />
<input type="text" placeholder="Disabled Input" disabled />
Enter fullscreen mode Exit fullscreen mode

input[disabled] selects all input elements with the disabled attribute.

input[disabled] {
    background: #82ffdc;
}
Enter fullscreen mode Exit fullscreen mode

Output:

Types of Attribute Selectors:

  1. Attribute Value Selector
  2. Attribute Starts With Selector
  3. Attribute Ends With Selector
  4. Attribute Wildcard Selector

We will be using below HTML template for Attribute selectors:

<p class="line-first-para">First Paragraph</p>
<p class="second-para">Second Paragraph</p>
<p class="line-last">Third Paragraph</p>
Enter fullscreen mode Exit fullscreen mode

1️⃣ Attribute Value Selector

input[type="checkbox"] selects all checkbox input elements.

input[type="checkbox"] {
  font-size: 18px;
  margin-top: 3rem;
}
Enter fullscreen mode Exit fullscreen mode

2️⃣ Attribute Starts With Selector

[class^="line"] selects elements with class="line" and either class="line" or class="line-first-para".

[class^="line"] {
    background: yellow;
}
Enter fullscreen mode Exit fullscreen mode

Output:

3️⃣ Attribute Ends With Selector

[class$="para"] selects all paragraph which end with para.

[class$="para"] {
    background: skyblue;
}
Enter fullscreen mode Exit fullscreen mode

Output:

4️⃣ Attribute Wildcard Selector

[class*="-"] selects all elements with "-" in their class, such as class="second-para" or class="third-para".

[class*="-"] {
    background: orangered;
    color: white;
}
Enter fullscreen mode Exit fullscreen mode

Output:

Reference 🧐

🌟 Twitter 👩🏻‍💻 Suprabha.me 🌟 Instagram

Top comments (2)

Collapse
 
akhilbandari9 profile image
Akhil Bandari

thank you

Collapse
 
tojacob profile image
Jacob Samuel G.

Muy bueno 👌