mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
335 B
HTML
25 lines
335 B
HTML
<!DOCTYPE HTML>
|
|
<style>
|
|
#a, #b {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: grey;
|
|
-moz-appearance: none;
|
|
-moz-box-shadow: 4px 4px 4px black;
|
|
border: none !important;
|
|
position: absolute;
|
|
}
|
|
|
|
#a {
|
|
top: 20px;
|
|
left: 20px;
|
|
}
|
|
|
|
#b {
|
|
top: 170px;
|
|
left: 20px;
|
|
</style>
|
|
|
|
<div id="a"> </div>
|
|
<div id="b"> </div>
|