blob: 2608b19c125f2cb8e0c060851fbeb739c61bcca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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>
|