Reputation: 2576
I want to place a table
into a "span6
" div
that is nested into a "row-fluid
" div
.
I want this table to span all the width possible (span6 in the example) and everything works fine, but a gap between the table and the first element above it is generated. It shouldn't be a margin, because I tried to set it to 0, so I really don't have a clue what's going on and I ask your help! Here is the fiddle
Upvotes: 0
Views: 573
Reputation: 3075
The h3 tag has a 10px margin pushing it down from the top.
.borderTest{
border: 1px solid red;
margin:0px;
}
Upvotes: 2