blob: e2ebf07edb8119479da3cdc3195555eaf540b6d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Masking: mask repainting.</title>
<style type="text/css">
div {
background-color: purple;
position: absolute;
margin: 1px 2px 3px 4px;
border: solid purple;
width: 44px;
height: 9px;
}
</style>
</head>
<body>
<div class="outer" style="top: 15px; left: 15px;"></div>
<div class="outer" style="top: 15px; left: 115px;"></div>
<div class="outer" style="top: 15px; left: 215px;"></div>
</body>
</html>
|