Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://jsfiddle.net/LtZAv/
.child .comment-box
div.content
float:right
您必须将评论框 div 的位置更改为相对
喜欢
.comment-box { position: relative; }
所以阴影将与第一个 div 重叠。
您需要更改 li.child 的显示,以便 div.content 的内容不会转义它。
添加这个 CSS :
li.child { display: inline-block; }
http://jsfiddle.net/stevendwood/LtZAv/2/