My Stuff

xxx

in the test.css file we have incorrectly defined H1 as both black and green
h1 { color: black }
h1, h2 { color: green }

This H1 should default to green, even though it is also defined as black

in the test.css file we have incorrectly defined H2 as both black, yellow and green
h1 { color: black }
h1, h2 { color: green }
h2, ul, ol { color: yellow }

This H2 should default to yellow, even though it is also defined as black and green

 

Other Stuff