I'm currently utilizing bootstrap's grid system and I’m looking to create a div element that "breaks" the grid and expands across the entire width of the screen ('width:100%').
This is what my code structure looks like:
<div class="container">
<div class="row">
<div class="span12">
This div conforms to the grid's width
</div>
<div class="unknown">
This div breaks the grid with full width
</div>
</div>
</div>
Would you happen to know how I can accomplish this? Should I be opening multiple containers, or would nesting divs within the container suffice?