"Left Right content"
Bootstrap 4.1.1 Snippet by SANTANU CHOWDHURY

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="grid-flip-area">
<div class="gird-flip">
<div>
<img class="bg-image img-fluid" src="https://triangle.pushsvr.com/themes/triangle/content-image/1-general-service.png" alt="services image">
</div>
<div class="gird-flip__content">
<p>
placeholder text commonly used in graphic design, publishing, and web development to fill empty spaces in a layout that does not yet have content.
</p>
<p>
placeholder text commonly used in graphic design, publishing, and web development to fill empty spaces in a layout that does not yet have content.
</p>
<p>
placeholder text commonly used in graphic design, publishing, and web development to fill empty spaces in a layout that does not yet have content.
</p>
<p>
placeholder text commonly used in graphic design, publishing, and web development to fill empty spaces in a layout that does not yet have content.
</p>
</div>
</div>
<div class="gird-flip">
<div>
<img class="bg-image img-fluid" src="https://triangle.pushsvr.com/themes/triangle/content-image/2-race-service.png" alt="services image">
</div>
<div class="gird-flip__content">
<p>
placeholder text commonly used in graphic design, publishing, and web development to fill empty spaces in a layout that does not yet have content.
</p>
<p>
placeholder text commonly used in graphic design, publishing, and web development to fill empty spaces in a layout that does not yet have content.
</p>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.grid-flip-area{
display: flex;
flex-direction: column;
gap: 10px;
}
@media(min-width:991px){
.grid-flip-area{
gap: 0px;
}
}
.gird-flip{
display: flex;
flex-direction: column;
}
@media(min-width:991px){
.gird-flip{
flex-direction: row;
}
}
.grid-flip-area .gird-flip:nth-child(even) {
flex-direction: column;
}
@media(min-width:991px){
.grid-flip-area .gird-flip:nth-child(even) {
flex-direction: row-reverse;
}
}
.gird-flip__content{
padding: 20px 0px;
display: flex;
flex-direction: column;
justify-content: center;
}
@media(min-width:991px){
.gird-flip__content{
padding-left:50px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: