Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS Descendant Selector</title> <style> div p { font-size:24px; } </style> </head> <body> <p>This is paragraph text</p> <h4>This is h4 heading text</h4> <p>This is another paragraph text</p> </body> </html>
  Preview Arrow