blob: cdbcee816c98c308511236c7fe770fa0a9f276e4 (
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
|
<svg xmlns="http://www.w3.org/2000/svg">
<style>
circle { fill: red }
@media (overflow-block: none) {
.a { fill: green }
}
@media (overflow-block: scroll) {
.b { fill: green }
}
@media (overflow-block: paged) {
.c { fill: green }
}
@media (overflow-block: something-new-and-unknown) {
.d { fill: green }
}
@media (overflow-block) {
.e { fill: green }
}
</style>
<circle cx="5" cy="10" r="5" class="a">A</circle>
<circle cx="15" cy="10" r="5" class="b">B</circle>
<circle cx="25" cy="10" r="5" class="c">C</circle>
<circle cx="35" cy="10" r="5" class="d">D</circle>
<circle cx="45" cy="10" r="5" class="e">E</circle>
</svg>
|