I have this easy code:
<div class="wrapper_big">
<div class="row-fluid grey">
<div class="span4">Will be logo</div>
<div class="span8">Will be menu</div>
</div>
</div>
and CSS:
.grey{background-color: #eeeeee;}
.wrapper_big {width: 1100px; margin: 0 auto;}
and I have extra space after spans, see in picture here: http://postimg.org/image/pt5khfcmv/
How remove it?
Update: Fiddle with extra space.