I try to apply some style css to my page, i work with Foundation 5 I want to apply a background color to all the page. As you can see on the jsfiddle, there is a white space between the top and the bottom.
Anyone know how to cover all the height screen with the background ?
Solution with body { height:100%; background-color: rgba(0,0,0,0.5); }
is forbidden because I don't want all my page have this background.
<div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<a class="left-off-canvas-toggle" href="#" >Menu</a>
<!-- Off Canvas Menu -->
<aside class="left-off-canvas-menu">
<!-- whatever you want goes here -->
<ul>
<li><a href="#">Item 1</a></li>
...
</ul>
</aside>
<div id="layer_picture">
<div class="row test">
<div class="medium-6 medium-centered columns">
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam, porro, necessitatibus consequuntur reiciendis dolore doloribus id repellendus tempora vitae quia voluptas ipsum architecto optio excepturi qui quisquam eligendi hic aliquam!</div>
<div>Dignissimos, adipisci, vero, harum deserunt necessitatibus fugiat quaerat omnis accusantium sit magnam unde asperiores impedit quia dolor magni aut sed dolores voluptas accusamus fuga delectus voluptates velit quod non libero!</div>
<div>Nostrum, quas, nulla, veritatis, facere incidunt totam vitae eos voluptas odio natus dolores earum consectetur eaque rerum ab at maxime atque dolore beatae velit. Ullam reiciendis ducimus placeat doloribus rem!</div>
</div>
</div>
</div>
<a class="exit-off-canvas"></a>
</div>
</div>