3D

by beatricevivaldi

HTML

<div id="container">
</div>

CSS

body, html {
    height: 100%;
}

body {
    -webkit-transform-style: preserve-3d;
    -webkit-perspective: 1000px;
}

#container {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
    -webkit-transform-style: preserve-3d;
}

#container > div{
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
}

#container > div:nth-child(1){
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
}