css - Overlapping box-shadow with float divs -
code
what expected
- top shadow of second
.child .comment-box
displayed , overlapping first.child .comment-box
what browser renders
- box shadow of second
.child .comment-box
in region ofdiv.content
float:right
not displayed.
you need change display of li.child contents of div.content not escape it.
add css :
li.child { display: inline-block; }
Comments
Post a Comment