blob: 8e5185771d54e3b258fdd794d38e05a90f7d6e61 [file] [log] [blame]
<html>
<head>
<style>
#block {
margin: 0px;
padding: 0px;
position: absolute;
width: 200px;
background: blue;
height: 20px;
display: inline-block;
}
</style>
</head>
<body style="width: 800px;">
<p> The two blue bars should be aligned with each other. </p>
<div style="text-align: center" >
<span style="position: absolute; top: 44px;">
<div id="block"></div>
</span>
</div>
<div id="block" style="position: absolute; top: 80px; left: 408px;"></div>
</body>
</html>