I'm struggling with positioning a div that's nested within a display:inline-block. How can I align it to the right side of the container?
<div style='width:100%'>
left
<div style='display:inline-block;position:relative;right:0px'>
right
</div>
</div>