In CSS there is a way to get the full height of the html document which is 100vw, and it is not getting all the height correctly.
The CSS looks like this:
#menu{
background-color: #252525 !important;
height: 100vw;
}
And the page looks like this:
Without inspecting open item:
With the inspect open element:
When adding another record via form
I could solve it by setting 102vw, but also by adding a new record, I would not get 100%, how could I solve this problem?
The structure of the file is as follows:
<body>
<div class="bg-dark dk" id="wrap">
<div id="top">
@include('cms.public.includes.header') <!-- TOP DIV -->
</div>
<div id="left"> <!-- ESTE ES EL DIV QUE QUIERO APLICAR EL ESTILO CSS -->
@include('cms.public.includes.left') <!-- LEFT DIFT -->
</div>
<div id="content">
@yield('content')
</div>
<div id="right" class="onoffcanvas is-right is-fixed bg-light" aria-expanded=false>
@include('cms.public.includes.header')
</div>
</div>
<footer class="footer">
@include('cms.public.includes.footer') <!-- FOOTER -->
</footer>
</body>
When applying the style to the div id="left" I get the same result.