mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-06 08:29:08 +00:00
18 lines
222 B
HTML
18 lines
222 B
HTML
<!DOCTYPE HTML>
|
|
<style>
|
|
body {
|
|
background-color: green;
|
|
}
|
|
|
|
#thediv {
|
|
width: 300px;
|
|
height: 100px;
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
box-shadow: 3px 3px black;
|
|
}
|
|
</style>
|
|
|
|
<div id="thediv">Foo</div>
|