mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|