CSS for Flip box with Slide up
.services-box {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.flip-box {
background-color: transparent;
width: 300px;
height: 370px;
border: 1px solid #ffffff;
border-radius: 0px;
perspective: 1000px;
overflow:hidden;
}
.extraspace {
padding: 5px 0;
display: block;
}
.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
display: flex;
justify-content: center;
align-items: center;
}
.flip-box:hover .flip-box-back {
top: 0;
}
.flip-box-front,
.flip-box-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
display: flex;
align-items: center;
flex-direction: column;
}
.flip-box-front {
background-color: #003048;
color: #ffffff;
border-radius: 0px;
padding: 25px;
justify-content: center;
}
.flip-box-front img {
height: 50px;
width: 50px;
}
.flip-box-back {
top:100%;
background-color: #ffffff;
color: #000;
border-radius: 0px;
padding: 20px;
transition: .3s ease;
}
HTML for Flip box with Slide up
Sample Title Front
Sample Title Back
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Example for Flip box with Slide up content
Sample Title Front
Sample Title Back
Lorem Ipsum is simply dummy text of the printing and typesetting industry.