I am attempting to recreate these two content boxes stacked ontop of one another without images – https://i.stack.imgur.com/oiINW.png is this possible or would an image have to be used for the lower box?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It can be reproduced really well, with minimal markup in… well, almost any browser, really. I did two versions, the HTML for both is the same.
The first version uses CSS 3D transforms and should work in Safari, Chrome, Firefox and IE10. Opera and IE9 (and older) don’t support 3D transforms, so it won’t work for those.
demo
Relevant CSS:
The second version is the better compatibility one and should work fully (shadows + emulate 3D effect) in Chrome, Safari, Firefox, IE9+ and Opera. The 3D effect should also be emulated in IE8, even if the shadows won’t be there.
demo
Relevant CSS:
You could go overboard and try to emulate shadows for IE8/ 3D effect and shadows for IE7 using additional elements instead of pseudo-elements and applying matrix transform/ shadow filters on those, but I think it’s not worth it.