зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
558 B
HTML
23 строки
558 B
HTML
<!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>
|