I am looking to enhance the responsiveness of my page, especially on smaller screens.
Currently, I have not utilized bootstrap for this purpose. I am contemplating whether I should use it or not. Can I utilize bootstrap for absolute positioning?
Thank you in advance for your assistance. I hope the question is clear with the provided drawings.
<div class="container-map">
<div class="top-container">
<div class="map-background">
</div>
<div class="map-filter">
</div>
</div>
<div class="map-search-results">
</div>
</div>
Below is the CSS code:
.top-container{
height:100%;
position:relative;
}
.map-background {
z-index: 10;
width: 100%;
height: 100%;
}
.map-filter {
z-index: 1000;
top:5%;
left:7%;
min-height:50px;
min-width:200px;
position: absolute;
}
.map-search-results{
width: 100%;
}
You can view the image here.
Desired layout shown in the image below:
You can check out the desired layout here.