blob: db3ae40c5b53b045d11d9d740794005d37209b7d (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<!DOCTYPE html>
<title>CSS Test (Backgrounds): border-radius clipping on overflow:hidden with transforms</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<style>
#outer {
border: 10px solid #000;
border-radius: 60px;
width: 200px;
height: 200px;
background: blue;
position: absolute;
top: 10px;
left: 10px;
}
#coverinner, #coverouter {
position: absolute;
border: 4px solid fuchsia;
filter: grayscale(30%);
}
#coverinner {
width: 196px;
height: 196px;
top: 18px;
left: 18px;
border-radius: 52px;
}
#coverouter {
width: 216px;
height: 216px;
top: 8px;
left: 8px;
border-radius: 62px;
}
</style>
<div id="outer">
</div>
<div id="coverinner">
</div>
<div id="coverouter">
</div>
|