css - Overlapping box-shadow with float divs -


code

http://jsfiddle.net/ltzav/

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 of div.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; } 

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


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -