blob: a0f7ba1b92862dc98b1f32ee97b3e2953bfef0b9 (
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
|
<!DOCTYPE HTML>
<title>border-radius hit testing</title>
<style>
body { margin: 0; }
#one, #two {
border-radius: 100px 60px 40px 120px / 40px 60px 60px 80px;
margin-bottom: 100px;
}
#two { overflow: hidden }
#one, #two > div {
height: 200px;
background: blue;
cursor: progress;
}
#one:hover, #two > div:hover {
background: fuchsia;
}
</style>
<body>
<div id="one"></div>
<div id="two"><div></div></div>
|