Reputation: 8565
I am trying to make a content and sidebar layout in bootstrap and am having issues making the sidebar being the same height as the parent .row (its height is the same as the content's height). Is it possible to stretch the height of the sidebar to the height of the parent without using JS/JQuery?
Upvotes: 0
Views: 1088
Reputation: 2338
IMHO the easiest way to do this is if your sidebar is positioned absolute and you set it's height to 100%, of course the wrapper should be positioned relative.
Upvotes: 2