summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/nth-last-child-specificity-3-ref.html
blob: 8adc397d380fbdfa225ab0555bf00dc535b7388c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<style>
    target {
        display: block;
        margin: 2px;
    }
</style>
</head>
<body>
    <div>
        <target>Black text.</target>
        <target>Black text.</target>
        <target style="color:white; background-color:red; border: 5px solid purple;">White text on red background with purple border.</target>
        <target style="color:red; border: 5px solid black;">Red text with black border.</target>
        <target style="color:white; background-color:red; border: 5px solid purple;">White text on red background with purple border.</target>
        <target style="border: 5px solid blue;">Black text with blue border.</target>
        <target style="color:white; background-color:red; border: 5px solid purple;">White text on red background with purple border.</target>
        <target style="color:red; background-color:green; border: 5px solid blue;">Red text on green background with blue border.</target>
    </div>
</body>
</html>