mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
31 lines
575 B
HTML
31 lines
575 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.wackeddiv {
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 20px;
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 2px solid highlight;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.posabssemitransparentblack {
|
|
position:absolute;
|
|
left: 0px;
|
|
top: 50px;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: lime;
|
|
opacity: 0.1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="posabssemitransparentblack"></div>
|
|
<div class="wackeddiv"></div>
|
|
</body>
|
|
</html>
|