blob: ade02ab498ae50c7c91969e2e0684745ba242f1f [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
position: absolute;
background-color: green;
}
#second {
left: 200px;
}
</style>
</head>
<body>
<div id="first">A</div>
<div id="second">B</div>
</body>
</html>