blob: f47e9f31b07c993aac8e065a699d5db2bc3cd9a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#basic-shape-interpolation">
<style>
.target {
background-color: blue;
width: 100px;
height: 100px;
}
.outofbounds {
position: absolute;
top: 200px;
left: 200px;
height: 10px;
width: 10px;
background-color: blue
}
</style>
<div class="target">
<div class="outofbounds"></div>
</div>
|