"Layout playout bootstrap and flexbox 2"
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 ---------->
<div class="jumbotron">
<nav>
<div class="container-fluid"> El navigato </div>
</nav>
<div class="container-fluid"> <!-- can remove -->
<div class="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><!-- can remove -->
</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 {
color: white;
}
.jumbotron {
margin-bottom: 0px;
padding: 0px;
background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.25) 100%), url("https://image.ibb.co/hWXhvx/default.jpg") center;
}
.dude {
display: flex;
justify-content: space-between;
}
.popular {
background-color: #231f20;
color: #fff;
margin-bottom: 95px; /* 20px plus 1/2 toolbox */
margin-top: 20px;
}
h2 {
color: #FFF;
margin-top: 100px;
}
.popular ul {
list-style-type: none;
margin-left: 0px;
padding-left: 0px;
margin-bottom: 0px;
}
.popular li {
padding: 10px 60px;
cursor: pointer;
}
.popular li:hover {
background-color: #383536;
}
.toolbox {
position: relative;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: