Currently, I am dealing with a situation where I want the content to occupy 100% of the page, excluding the initial 100px from the top bar. However, my code seems to be malfunctioning.
<style>
#content{
display: block;
height: 100%-100px; <!-- I require a solution for this issue as it is not working properly -->
}
#topbar{
height: 100px;
display: block;
}
</style>