Skip to content
Advertisement

How can I center my div content responsively with sidebar and top menu on the same page?

I’m trying to center my div content responsively with a sidebar menu and a top menu using bootstrap. But my div content is placed at the bottom of my page when I require the side-menu file and I don’t know why. I’m not using any CSS file, just Bootstrap 5.2, but if your solution requires CSS that’s okay.

INDEX

JavaScript

SIDE MENU

JavaScript

This is what it was supposed to look like, but with the sidebar: enter image description here

And this is what happens when I require my sidebar file: enter image description here

I tried using position-absolute and d-inline-block, which resulted on other pages, but this isn’t working on this one

Advertisement

Answer

Bootstrap is build on/with Flexbox. So a good solution for you is to use their Flex Utility classes to make the layout.

Explaining the solution

When dealing with elements that should stretch the entire viewport height it’s good practice to set a min-height of 100vh to html and body.

Note in the CSS I also added min-height: -webkit-fill-available. They are commented out because they don’t work in the iFrame, at least for me they don’t. I recommend removing the comment block if you use this code; they’re useful because Safari (iOS mostly) handles 100vh a little different than the other browsers which can cause some issues.

I then made the body a flex container so its direct children elements (flex items) will stack horizontally (by default). I used the class d-md-flex so all elements will stack vertically below the medium break point. Use d-flex if you want your sidebar to always stick to the left.

If you don’t want body to be flex, a ‘wrapper’ <div class="d-md-flex">...</div> that spans all the (necessary) elements is a good alternative. Just add the CSS for it, setting it to height: 100%; or 100vh.

Speaking of sidebar; making it flex will now make it stretch the whole viewport, since it’s a flex item of a flex container (body) that has a height of 100vh.

And that’s it. Snippet is best viewed using the full page option.

JavaScript
JavaScript

Your card layout

I changed your two cards layout to make it easier to control how they behave, using row columns and the gap g-* utility class. It has no effect on how the sidebar behaves, so if it’s of no use; just ignore it.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement