mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
244 B
HTML
18 lines
244 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<style>
|
||
|
body {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
#thediv {
|
||
|
width: 300px;
|
||
|
height: 100px;
|
||
|
position: absolute;
|
||
|
top: 20px;
|
||
|
left: 20px;
|
||
|
color: black;
|
||
|
-moz-box-shadow: 3px 3px 0px 3px;
|
||
|
}
|
||
|
</style>
|
||
|
<div id="thediv">Foo</div>
|