Quantcast
Channel: Active questions tagged flexbox - Stack Overflow
Viewing all articles
Browse latest Browse all 1305

CSS Flexbox with a component returning TopBar and SideBar and another one returning main content

$
0
0

I am having troubles getting my main content next to the sidebar in a flexbox layout. My TopBar and SideBar components are combined into a single component, so they are returned in a single parent div. Is there a solution using CSS flexbox or do I have to use grid?

This is basically how it is returned:

<div style="display: flex; flex-wrap: wrap;"><div id="ParentNav"><div style="width: 100%; height: 48px; background-color: blue;">TopBar</div><div style="width: 256px; min-height: calc(100vh - 48px); background-color: grey;">SideBar</div></div><div style="flex-grow: 1; background-color: gold;">Main content</div></div>

This is what I would like to achieve visually, but I cannot return the TopBar and SideBar seperately.

<div style="display: flex; flex-wrap: wrap;"><div style="width: 100%; height: 48px; background-color: blue;">TopBar</div><div style="width: 256px; min-height: calc(100vh - 48px); background-color: grey;">SideBar</div><div style="flex-grow: 1; background-color: gold;">Main content</div></div>

Viewing all articles
Browse latest Browse all 1305

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>