

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Selects all elements with CSS
To select all elements, use the * CSS Selector. You can try to run the following code to select all the elements,
Example
<!DOCTYPE html> <html> <head> <style> *{ color: blue; background-color: orange; } </style> </head> <body> <h1>Demo Website</h1> <h2>Learning</h2> <p id = "tutorials">Tutorials on web dev, programming, database, networking, etc.</p> <p>Every tutorials has lessons with illustrations and figures.</p> </body> </html>
- Related Questions & Answers
- Selects all elements with alt attribute with CSS
- Selects all elements with rel=”nofollow” with CSS
- Selects all elements with class="mydemo" with CSS
- Selects all <div> elements and all <p> elements with CSS
- Selects all <p> elements inside <div> elements with CSS
- Selects all elements with alt attribute containing the word "Tutorials" with CSS
- Selects all elements with a lang attribute value starting with "en" with CSS
- How jQuery selects elements using CSS?
- Selects specific elements like <p> with CSS
- Selects all <p> elements that are placed immediately after <div> elements with CSS
- Selects all <p> elements where the parent is a <div> element with CSS
- Selects the element with id="tutorials" with CSS
- Style all <input> elements with a valid value with CSS
- Style all <input> elements with an invalid value with CSS
- Overlap Elements with CSS
Advertisements