"Layout playout bootstrap and flexbox"
Bootstrap 3.3.0 Snippet by johnmillshimself

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="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<nav><h3>El navigato</h3></nav>
<div class="jumbotron">
<div class="containerr">
<div class="roww">
<div class="col-md-12d dude">
<h2>Good morning, it's hot today!</h2>
<div class="popular">
<ul>
<li>Most popular link</li>
<li>Most popular link</li>
<li>Most popular link</li>
<li>Most popular link</li>
<li>Most popular link</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="contentbox">
<div class="toolbox">
<ul>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</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
nav {
background-color: white;
}
.jumbotron {
margin-bottom: 0px;
padding: 0px;
background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%), url("https://image.ibb.co/hWXhvx/default.jpg") center;
height: 500px;
}
.containerr {
padding: 0px 20px 0px 20px;
}
.dude {
display: flex;
justify-content: space-between;
}
.popular {
background-color: #c3c3c3;
margin-top: 20px;
}
h2 {
color: #FFF;
margin-top: 100px;
}
.popular ul {
list-style-type: none;
margin-left: 0px;
padding-left: 0px;
margin-bottom: 0px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: