I am a complete newbie to html and css and I am creating a game where I want to use a couple of grids/columns to display a place and timer and the rest of the page to be filled with Map. I dont know how to acheive it. If I try the pixels it doesnt occupy the entire screen and I am sure it would be a problem if it was to be done in mobile
Here is my code
<div class="container-fluid">
<div class="row">
<div class="col-sm-3" style="background-color:orange;">
{{ countDownTimer }}
</div>
<div class="col-sm-9" style="background-color:pink;">
{{ puzzle.name}} , {{ puzzle.country }}
</div>
</div>
<div class="row">
<div class="col-sm-12" id="map" style="width:100%; height:100%;"></div>
</div>
</div>