зеркало из https://github.com/mozilla/gecko-dev.git
28 строки
380 B
HTML
28 строки
380 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#absPos {
|
|
position: absolute;
|
|
top: 20px; left: 20px;
|
|
width: 200px;
|
|
background-color: green;
|
|
}
|
|
.margin {
|
|
height: 40px;
|
|
}
|
|
#content {
|
|
height: 100px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="absPos">
|
|
<div class="margin"></div>
|
|
<div id="content"></div>
|
|
<div class="margin"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|