My design includes a fixed Top Toolbar
and a fixed Sidebar
. I am trying to position the Sidebar
just under the Toolbar
without using any top
value or margin-top
. This was achieved with Bootstrap-4 by setting a top
value. Is there a way to accomplish this without the top
value?
<!-- Sidebar -->
<nav id="sidebar" class="sticky-top sticky-offset">
-----------------
</nav>
<nav class="navbar fixed-top">
-------------
</nav>
<style>
.sticky-offset {
top: 56px!important;
}
</style>
I am looking for an alternative solution that does not involve using top