mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00: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>
|