.child .comment-box
is displayed and overlapping the first .child .comment-box
.child .comment-box
in the region of div.content
with float:right
is not displayed.You need to change the display of the li.child so that the contents of div.content do not escape it.
Add this CSS :
li.child { display: inline-block; }