Home > Article > Web Front-end > Select every element preceded by a CSS element
Use the element ~ element selector to select the ff6d136ddc5fdfeffaf53ff6ee95f185 element, preceded by the e388a4556c0f65e1904146cc1a846bee element. You can try running the following code to implement this example
Live Demo
<!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>
The above is the detailed content of Select every element preceded by a CSS element. For more information, please follow other related articles on the PHP Chinese website!