I'm striving to make my map occupy the entire height of the page, while still staying beneath the navigation bar.
The screenshot below shows what I'm aiming for. How can I achieve this so that regardless of the device, it always fills the full height of the page?
Currently, I am setting the height manually, but is there a specific class that can help me achieve this?
HTML
<div class="column right">
<div id="map"></div>
</div>
</div>
CSS
#map {
width: 100%;
float: right;
height: 600px;
}
.column {
padding: 10px;
}
.left {
width: 55%;
padding-left: 50px;
float:left
}
.right {
width: 45%;
float: right;
}