Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<style>
#line {
position: relative;
height: 100px;
}
#line > * {
position: absolute;
background: black;
}
#e1 { left: 0; top: 0; }
#e2 { left: 120px; top: 0; }
#e3 { left: 200px; top: 0; }
</style>
</head>
<body>
<div id="line">
<div id="e1" style="width: 100px; height: 100px;"></div>
<img id="e2" src="/css/support/60x60-green.png">
<div id="e3" style="width: 20px; height: 20px;"></div>
</div>
</body>
</html>