41 lines
477 B
CSS
41 lines
477 B
CSS
body {
|
|
margin: 0px;
|
|
}
|
|
|
|
#cards {
|
|
border: 2px tomato solid;
|
|
width: 600px;
|
|
height: 400px;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
|
|
.card {
|
|
width: 33.33%;
|
|
position: relative;
|
|
transition: transform 1s;
|
|
perspective: 1000px;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
img {
|
|
width: 100%
|
|
}
|
|
|
|
.front_face,
|
|
.back_face {
|
|
position: absolute;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
|
|
.flip {
|
|
transform: rotateY(180deg);
|
|
}
|
|
|
|
|
|
.front_face {
|
|
transform: rotateY(180deg);
|
|
} |