| /* The specifity varies with the element being matched. */ |
| :nth-last-child(even of target.foo, .foo#bar, target.foo#bar, target#bar) { |
| border: 5px solid purple; |
| <p>This test the specificity of :nth-last-child() with dynamic specificity of compound selectors. If the test pass, the style of each line should match its text description.</p> |
| <target>Black text.</target> |
| <target>Black text.</target> |
| <target class="foo">White text on red background with black border.</target> |
| <target class="foo">Red text with black border.</target> |
| <target id="bar">White text on red background with purple border.</target> |
| <target id="bar">Black text with blue border.</target> |
| <target class="foo" id="bar">White text on red background with purple border.</target> |
| <target class="foo" id="bar">Red text on green background with blue border.</target> |