"Columns height"
Bootstrap 3.3.0 Snippet by igorsa

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 ---------->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://getbootstrap.com/examples/dashboard/#">Project name</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="http://getbootstrap.com/examples/dashboard/#">Dashboard</a></li>
<li><a href="http://getbootstrap.com/examples/dashboard/#">Settings</a></li>
<li><a href="http://getbootstrap.com/examples/dashboard/#">Profile</a></li>
<li><a href="http://getbootstrap.com/examples/dashboard/#">Help</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid container-full-height">
<div class="row row-full-height">
<div class="hidden-xs col-sm-6 col-md-8 col-full-height login-main-content">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="content-box">
<img src="http://demo.wpcrunchy.com/simplybiz/wp-content/uploads/sites/8/2012/12/48_account.png" class="content-box-icon" alt="Icon">
<h3 class="content-box-title">Identity nunc turpis</h3>
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
/*
* Base structure
*/
/* Move down content because we have a fixed navbar that is 50px tall */
body {
padding-top: 50px;
}
html, body {
height: 100%;
}
/*
* Top navigation
* Hide default border to remove 1px line.
*/
.navbar-fixed-top {
border: 0;
}
/** Column **/
.container-full-height {
height: 100%;
}
.container-full-height, .row-full-height, .col-full-height {
height: 100%;
}
.col-vertical-height {
display: table !important;
}
.col-vertical-top {
display: table-row;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: