"Left Right Labled Tabs Pointing to Boxes"
Bootstrap 3.3.0 Snippet by tradesouthwest

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 id="flex" class="container-fluid">
<div class="row">
<ul class="flex-container">
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<img src="https://dl.dropboxusercontent.com/s/he3shuyj7jiuh0i/images%20%281%29.jpg" alt="vinyl fence">
</li>
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<p>Classic Privacy w/ Straight Picket<br><a href="#semiPrivacy" title="pool vinyl fence" class="btn btn-labeled-left btn-gradient">
<span class="btn-label"><i class="glyphicon glyphicon-arrow-left"></i></span>VIEW MORE</a></p>
</li>
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<img src="https://dl.dropboxusercontent.com/s/uiotb9uyudv5ml4/6FT%20FULL%20PRIVACY.jpg" alt="vinyl fence">
</li>
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<p>Classic Privacy w/ Closed Pickets.<br><a href="#privacy" title="pool vinyl fence" class="btn btn-labeled-left btn-gradient">
<span class="btn-label"><i class="glyphicon glyphicon-arrow-left"></i></span>VIEW MORE</a></p>
</li>
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<img src="https://dl.dropboxusercontent.com/s/7rxp6k450zlslsi/1282859142_pool-fence-4-5-foot.jpg" alt="vinyl fence">
</li>
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<p>Classic Privacy w/ Lattice.<br><a href="#lattice" title="pool vinyl fence" class="btn btn-labeled-left btn-gradient">
<span class="btn-label"><i class="glyphicon glyphicon-arrow-left"></i></span>VIEW MORE</a></p>
</li>
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<p>Classic Privacy w/ Scalloped Panels<br><a href="#scalloped" title="pool vinyl fence" class="btn btn-labeled-right btn-gradient">VIEW MORE
<span class="btn-label"><i class="glyphicon glyphicon-arrow-right"></i></span></a></p>
</li>
<li class="flex-item col-xs-12 col-sm-3 col-lg-2">
<img src="https://dl.dropboxusercontent.com/s/gkn5wrbxs94vmh2/images.jpg" alt="vinyl fence">
</li>
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
/* col-xs-6 can become col-xs-4 for wider media
* used flex as selector after trying flex boxes so I left the
* name - just in case you were wondering
*/
#flex {
padding-left:35px;
background: #fefefe;
}
.flex-container {
box-sizing: border-box;
padding: 0px;
width: 100%;
margin: 0 auto;
list-style: none;
}
.flex-item {
background: #fafafa;
padding: 5px;
width: 200px;
max-height: 150px;
margin-top: 10px;
line-height: 1.45;
color: inherit;
font-size: inherit;
text-align: center;
margin-right: 2px;
overflow: hidden;
}
.flex-item img {
max-height: 150px;
padding: 0;
}
.flex-item:last-child{margin-right: 0;}
#flex li p {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: