Take a look at: http://jsfiddle.net/kdcmq/86/
#parent {
position: relative;
width: 500px;
height: 500px;
background: red;
}
#child {
display:inline-block;
width: 100px;
height: 100px;
background: blue;
top: 0;
left: 100%
}
Is it possible to align the smaller blue elements right below the border of the parent div so they start when the bigger one starts?
Your help is much appreciated!