Since this question is outdated my question is how do I create a fluid row within non-fluid container.
I want to have a non-fluid container as my default layout, however the map I am placing, i need it to be full-width non-fluid.
here is my html:
<div class="container"> <div class="row-fluid"> <div id="map-canvas" class="container-fluid"></div> </div> </div> row-fluid is not working with bootstrap 3, setting width: 100%; only takes width of its parent (non-fluid container).
JS Fiddle, Please increase output window width so you can see the difference.
Thanks in advance
position:fixed;width: 100% !important;. Seriously now, you're trying to create bad markup! use good HTML markup to achieve what you like, if you can't change the HTML directly use jQuery for that.