


How to apply CSS styles to different elements with the same class name in HTML?
HTML classes is a global attribute used by HTML tags to specify an inherently case-sensitive list of classes. These classes are then used by CSS to apply styles to specific tags with that class, and by Javascript to manipulate the behavior, interactivity, or styling of HTML elements.
Method 1; Use dot (.) selector
In this approach, we will simply use the dot (.) selector to select multiple elements with the same class name and apply the same set of styles to them using CSS.
Example
In this example, we will select the "p" tag and the "span" HTML tag using their classes and assign them a text color of "red" using CSS.
<!DOCTYPE html> <html lang="en"> <head> <title>How to apply CSS style to the different elements having the same class name in HTML?</title> <style> .sample { color: red; } </style> </head> <body> <p class="sample">This is p tag content!</p> <span class="sample">This is span tag content!</span> </body> </html>
Method 2: Use the "p" tag and the "span" HTML tag
In this approach, we will use CSS to apply a set of different styles to elements with the same class name. To do this, we will use the HTML tag name followed by a dot (.) selector to select a specific element and give it the required CSS styling.
Example
In this example, we will select the "p" tag and the "span" HTML tag using their classes and give them different text colors using CSS.
<!DOCTYPE html> <html lang="en"> <head> <title>How to apply CSS style to the different elements having the same class name in HTML?</title> <style> p.sample { color: red; } span.sample { color: green; } </style> </head> <body> <p class="sample">This is p tag content!</p> <span class="sample">This is span tag content!</span> </body> </html>
in conclusion
In this article, we saw how to select HTML elements from class names and how to apply the same and different CSS styles to them using two different methods. In the first method, we use the dot (.) selector to select multiple elements with the same class name and apply the same style to them. In the second method, we apply different CSS styles to elements with the same class name using the HTML tag name followed by a dot (.) selector.
The above is the detailed content of How to apply CSS styles to different elements with the same class name in HTML?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



With the recent climb of Bitcoin’s price over 20k $USD, and to it recently breaking 30k, I thought it’s worth taking a deep dive back into creating Ethereum

It's out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That's like this.

I'd say "website" fits better than "mobile app" but I like this framing from Max Lynch:

The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.

If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

I was just chatting with Eric Meyer the other day and I remembered an Eric Meyer story from my formative years. I wrote a blog post about CSS specificity, and
