зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
450 B
HTML
26 строки
450 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta charset="utf-8">
|
|
<style>
|
|
.outer {
|
|
display: inline;
|
|
position: relative;
|
|
}
|
|
|
|
.inner {
|
|
position: absolute;
|
|
top: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="outer">
|
|
<div>You can see me.</div>
|
|
<div class="inner">But you can't see me!</div>
|
|
</div>
|
|
</body>
|
|
</html>
|