Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .container { margin: 40px auto; max-width: 700px; background-color: #eeeeee; padding: 20px; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } section { padding: 30px; } :scope { background-color: #1c87c9; } </style> </head> <body> <h2>:scope selector example</h2> <div class="container"> <section> <p> Inside the scope. </p> </section> </div> </body> </html>