summaryrefslogtreecommitdiffstats
path: root/test/css/basic7.css
blob: 9e857b5248cd7cb0ff6187c496a8744ae1716bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* selector with multiple classes */

.one.two.three {
    color: blue;
}

.one {
    color: aqua;
}

.two {
    color: azure;
}

.one.two {
    color: brown;
}

span.button.selected {
    border: solid 4px red;
}

span.button {
    border: solid 1px gray;
}