зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
358 B
HTML
23 строки
358 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
div {
|
|
left: 200px;
|
|
top: 200px;
|
|
position:absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="opacity:0.5; position:static">
|
|
<div style="width: 200px; height: 200px; background-color: blue;"></div>
|
|
<div style="width: 100px; height: 100px; background-color: red;"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|