"Equal height columns with button at bottom"
Bootstrap 3.3.0 Snippet by joseanmola

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/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row row-eq">
<div class="col-sm-4 col-eq">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
<br/> Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a
<br/> galley of type and scrambled it to make a type specimen book. It has survived not only five centuries,
<br/> but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in
<br/> the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with
<br/>desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<div class="info-button">
<a class="btn btn-block btn-primary" href="http://mispicaderos.com">+ Information</a>
</div>
</div>
<div class="col-sm-4 col-eq">
<p>2</p>
<div class="info-button">
<a class="btn btn-block btn-primary" href="http://placesforlove.com">+ Information</a>
</div>
</div>
<div class="col-sm-4 col-eq">
<p>3</p>
<div class="info-button">
<a class="btn btn-block btn-primary" href="http://trovacamporella.com">+ Information</a>
</div>
</div>
</div>
</div>
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
.container{
background-color:#000000;
}
.row-eq{
display: flex;
}
.col-eq{
flex: 1;
background: #ccc;
margin: 10px;
}
.col-eq p{
padding-bottom: 50px;
}
.info-button {
position: absolute;
left: 0;
right: 0;
bottom: 0;
margin: 5px;
}
@media (max-width: 768px) {
.row-eq{
display: block;
}
.col-eq{
flex: unset;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: