blob: f1155db7fe9093f03bc282ad69a75fdc2d39db6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<title>Test for z-index relationship to border-radius clipping of overflow</title>
<style>
#one { position: absolute; background: blue;
top: 50px; left: 50px; width: 100px; height: 100px }
#two { position: absolute; border-radius: 15px; background: fuchsia;
top: 25px; left: 75px; width: 100px; height: 100px }
#three { position: absolute; background: yellow;
top: 75px; left: 100px; width: 100px; height: 100px }
</style>
<div id="three"></div>
<div id="two"></div>
<div id="one"></div>
|