I have an ASP.NET MVC view with the following Twitter Bootstrap page:
<div class="container"> <div class="container-fluid header"> [Header content] </div> <div class="row-fluid"> <div class="span9"> <div class="container-fluid main-content"> [Main Content] </div> </div> <div id="right-sidebar" class="span3"> [Right Sidebar Content] </div> </div> </div>
My problem is that my [Main Content] is much higher than my [right side content]. Since my [Right Side Content] has a different background color, I would prefer it to reach my footer (the full height of my [Main Content].)
I tried setting height: 100% to the sidebar, but this did not have a visible effect in Chrome. Can anyone see how to do this?
Jonathan wood
source share