Home > Article > Web Front-end > Select specific elements like CSS
To select an element, use an element selector. You can try running the following code to select the e388a4556c0f65e1904146cc1a846bee element:
Live Demo
<!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>
The above is the detailed content of Select specific elements like CSS. For more information, please follow other related articles on the PHP Chinese website!