Name: Anonymous 2008-05-08 20:13
Okay, the html document has these elements:
<p> This is a paragraph </p>
<p id="dinosaur">This is a paragraph with a dinosaur.</p>
And the css file contains these properties:
p {border-style:dotted;}
p#dinosaur {border-style:solid; border-color:green}
Why does the second paragraph have a dotted border but is green?
<p> This is a paragraph </p>
<p id="dinosaur">This is a paragraph with a dinosaur.</p>
And the css file contains these properties:
p {border-style:dotted;}
p#dinosaur {border-style:solid; border-color:green}
Why does the second paragraph have a dotted border but is green?