Papierstapel-Effekt mit CSS3

Original: http://jsfiddle.net/chriscoyier/PBzLJ/

HTML

<div class="layered-paper">
    Howdy
</div>

CSS

/* Layered Paper */
.layered-paper {
    background: #eee;
    box-shadow:
        0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */
        0 10px 0 -5px #eee, /* The second layer */
        0 10px 1px -4px rgba(0,0,0,0.15), /* The second layer shadow */
        0 20px 0 -10px #eee, /* The third layer */
        0 20px 1px -9px rgba(0,0,0,0.15); /* The third layer shadow */
    
    
    padding: 30px;
}

body {
  padding: 30px;   
}

JavaScript

/* 
By: http://jameskoster.co.uk/snippets/layered-paper-effect-using-css3-box-shadows/
*/