mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
280 B
HTML
20 lines
280 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { margin:0; padding:0; overflow:hidden; }
|
|
#new {
|
|
position: absolute;
|
|
left: 200px;
|
|
top: 100px;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="new"></div>
|
|
</body>
|
|
</html>
|