

- 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 every <ul> element that are preceded by a <p> element with CSS
Use the element ~ element selector to select <ul> elements preceded by <p> element. You can try to run the following code to implement this
Example
<!DOCTYPE html> <html> <head> <style> p~ul { color: white; background-color: blue; } </style> </head> <body> <h1>Demo Website</h1> <h2>Fruits</h2> <div> <p>Vegetables are good for health.</p> <ul> <li>Spinach</li> <li>Onion</li> <li>Capsicum</li> </ul> </div> <p>Fruits are good for health.</p> <ul> <li>Apple</li> <li>Orange</li> <li>Kiwi</li> </ul> </body> </html>
- Related Questions & Answers
- Style every <p> element that is the only <p> element of its parent with CSS
- Style every <p> element that is the first <p> element of its parent with CSS
- Style every <p> element that is the last <p> element of its parent with CSS
- Style every <p> element that is the nth <p> element of its parent with CSS
- Style every <p> element that has no children with CSS
- Selects all <p> elements where the parent is a <div> element with CSS
- Selects all <p> elements that are placed immediately after <div> elements with CSS
- Selects all <p> elements inside <div> elements with CSS
- Style every <p> element with a lang attribute value with CSS
- Selects all <div> elements and all <p> elements with CSS
- Selects specific elements like <p> with CSS
- '></a></li></ul><i>xssi</i>
- Select every <p> element that is the second <p> element of its parent, counting from the last child
- Style every checked <input> element with CSS
- Style every disabled <input> element with CSS
Advertisements