Bertuz
Bertuz

Reputation: 2576

unintended space above the table when with bootstrap

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

Answers (1)

Anagio
Anagio

Reputation: 3075

The h3 tag has a 10px margin pushing it down from the top.

http://jsfiddle.net/Ynyex/3/

.borderTest{
    border: 1px solid red;
        margin:0px;
}

Upvotes: 2

Related Questions