То есть:
<style>
div{
width: 100px;
height: 100px;
}
#one{
background-color: pink;
}
#two{
background-color: yellow;
}
</style>
<div id='one' style='position: absolute;'></div>
<div style='display: inline-block'></div>
<div id='two' style='display: inline-block; margin-left: -4px'></div>
<br><br>
<div id='one' style='position: absolute;'></div>
<div id='two' style='margin-left: 100px'></div>
<br><br>
<div id='one' style='position: absolute;'></div>
<div id='two' style='position: relative; left: 100px'></div>