3

代码

http://jsfiddle.net/LtZAv/

预期什么

  • 显示第二个的顶部阴影.child .comment-box并与第一个重叠.child .comment-box

浏览器呈现什么

  • 不显示with.child .comment-box区域中的第二个框阴影。div.contentfloat:right
4

2 回答 2

2

您必须将评论框 div 的位置更改为相对

喜欢

.comment-box { position: relative; }

所以阴影将与第一个 div 重叠。

于 2013-05-15T09:50:59.967 回答
0

您需要更改 li.child 的显示,以便 div.content 的内容不会转义它。

添加这个 CSS :

li.child { display: inline-block; }

http://jsfiddle.net/stevendwood/LtZAv/2/

于 2013-05-15T09:37:25.993 回答