Input
Output
<!DOCTYPE html> <html> <head> <style> div > p { color: crimson; font-style: italic; } </style> </head> <body> <div> <p>This paragraph is a direct child of div.</p> <section> <p>This paragraph is nested and NOT affected.</p> </section> </div> <p>This paragraph is outside the div and not affected.</p> </body> </html>