mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
245 B
HTML
19 lines
245 B
HTML
<!DOCTYPE HTML>
|
|
<style>
|
|
body {
|
|
background-color: green;
|
|
}
|
|
|
|
#thediv {
|
|
width: 300px;
|
|
height: 100px;
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
opacity: 0.6;
|
|
box-shadow: 3px 3px 2px rgb(255,0,0);
|
|
}
|
|
</style>
|
|
|
|
<div id="thediv"></div>
|