mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
20 lines
324 B
HTML
20 lines
324 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
overflow:hidden;
|
|
width:200px;
|
|
height:80px;
|
|
position:absolute;
|
|
left:10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="top:0px; z-index:0">Hello</div>
|
|
<div style="top:200px; z-index:1">Hello</div>
|
|
<div style="opacity:0.5; top:100px; z-index:2">Hello</div>
|
|
</body>
|
|
</html>
|