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