0
how can I leave my column 100% height?
example:
where it is written Teste
, is the column q has to stand 100% height,
DETAIL
on some screens, I will add content using jQuery
, also need to not let this content that is not visible yet out of height
CODE
<div class="col-xs-12 col-md-12" id="menu">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<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="#">Brand</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html"><span class="glyphicon glyphicon-envelope"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-shopping-cart"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-list"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-signal"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-cog"></span> Item</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Log off</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</div>
<div class="col-xs-12 col-md-2" id="ulMenuLateral">
<ul>
<li><a href="index.html"><span class="glyphicon glyphicon-envelope"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-shopping-cart"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-list"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-signal"></span> Item</a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-cog"></span> Item</a></li>
</ul>
</div>
<div class="col-xs-12 col-md-10 content">
<div class="col-xs-12 col-md-12 semPadding paddingCimaBaixo">
<h1>
Teste
</h1>
</div>
It would be interesting for you to post the "example" code here as well, so the link is only a reference to the code described.
– user28595
OK @Diegofelipe
– Furlan
an alternative would be to take the screen size via jquery
– Marcos Henrique
You need 100% of the screen or missing space to get to the footer?
– celsomtrindade
You want that
h1
divide the page ?– Edilson
@Celsomtrindade space missing until the footer
– Furlan