Input
Output
<!DOCTYPE html> <html> <head> <style> div p { color: darkgreen; font-weight: bold; } </style> </head> <body> <div> <p>This paragraph is inside a div.</p> <section> <p>This nested paragraph is also inside the div.</p> </section> </div> <p>This paragraph is outside the div and not affected.</p> </body> </html>