blob: a9e2dfc64be457f16969e89d8ad416eb4c885c2a (
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>
div {
position: absolute;
width: 100px;
height: 100px;
margin-left: 100px;
background-color: red;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|