<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>CSS Test: Selectors: Descendant selectors</title> <link rel="author" title="Gabriele Romanato" href="mailto:gabriele.romanato@gmail.com"> <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#descendant-selectors"> <meta name="flags" content=""> <meta name="assert" content="Browsers should apply each rule to the descendant elements"> <style type="text/css"> body p {border: thin solid orange} div p {border: thin solid blue} h4 span {border: thin solid fuchsia} </style> </head> <body> <p>This paragraph should have a thin orange border.</p> <div><p>This paragraph should have a thin blue border.</p></div> <h4><span>This text should have a thin fuchsia border.</span></h4> </body> </html>