I am facing an issue with some simple code:
<div class="wrapper_big">
<div class="row-fluid grey">
<div class="span4">Logo goes here</div>
<div class="span8">Menu goes here</div>
</div>
</div>
Along with the following CSS:
.grey{background-color: #eeeeee;}
.wrapper_big {width: 1100px; margin: 0 auto;}
There seems to be extra space after the spans, which can be seen in this image:
How can I remove this extra space?
Update: View fiddle with extra space.