I have two divs called map
and filters
. Each of them has a solid border of 1px width. For the moment the map
div is containing eight rows of images at different widths (I can provide a screenshot if necessary) and it has a fixed position. I want to put the filters
div right beneath the map
div which it has 82.75% height. I've tried different display and position values but with no success, either my first div collapse or the second one remains at the top of the screen. What should I do to have the both divs covering 100% of the screen one beneath the other?
My CSS code:
body {
margin: 0px;
width: 100%;
height: 100%;
background-color: #F7F7F7 !important;
}
#map {
display: table;
border-style: solid;
border-width: 1px;
width: 100%;
height: 82.75%;
position: fixed;
}
#filters {
border-style: solid;
border-width: 1px;
width: 100%;
height: 17.25%;
position: fixed;
}