

- 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 specific elements like <p> with CSS
To select elements, use the element selector. You can try to run the following code to select <p> elements:
Example
<!DOCTYPE html> <html> <head> <style> p { color: blue; background-color: orange; } </style> </head> <body> <h1>Demo Website</h1> <h2>Learning</h2> <p>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 <p> elements inside <div> elements with CSS
- Selects all elements with CSS
- Selects all <div> elements and all <p> elements with CSS
- Selects all elements with alt attribute 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
- How jQuery selects elements using CSS?
- Selects all elements with rel=”nofollow” with CSS
- Selects all elements with class="mydemo" 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
- Selects every <ul> element that are preceded by a <p> element with CSS
- Selects the element with id="tutorials" with CSS
- Display specific table names with MySQL LIKE Operator
- Overlap Elements with CSS
Advertisements