
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Select 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>
Advertisements