1

I have bootstrap container (div class="container") and there are two rows (div class="row").

But between those rows I need one full width horizontal line. Full width - I mean that it should be full width - outside container. This line is just for design issues, it would have background color and that is it. I do not know how to create it.

renathy
  • 5,125
  • 20
  • 85
  • 149
  • Probably similar to this - http://stackoverflow.com/questions/28565976/css-how-to-overflow-from-div-to-full-width-of-screen – Paulie_D Oct 29 '15 at 18:42

1 Answers1

4

Divide your content into 2:

<div class="container">
    <div class="row">
    stuff here
    </div>
</div>

<div class="line"></div>

<div class="container">
    <div class="row">
    stuff here
    </div>
</div>
coopersita
  • 5,011
  • 3
  • 27
  • 48