I have provided my code below. How can I effectively use percentage height?
<div class="container" >
<div class="row">
<div class="col-" id="t1"></div>
</div>
</div>
Css
body{
background-color:aquamarine;
}
#t1{
height:100%;
border:1px solid brown;
}
When setting height:100px;
everything works fine, but when using height:100%;
it doesn't work as intended.
How can the height be set in percentage using bootstrap for each div?