I have a div inside a container that I wish to extend beyond the container to fit the screen width. I'm using bootstrap columns to create the divs.
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mydiv">
Content
</div>
</div>
</div>
</div>
The container has a set width however that only fills about 1200px and mydiv can't extend beyond that.