Reputation: 32808
I have been looking at the following fiddle: Example of rounded corners
It does what I want BUT only when the "Normalised CSS" check box is clicked. If this is not clicked (and in my code) then I see spaces between the cells. Does anyone know what is causing this?
Upvotes: 1
Views: 334
Reputation: 51807
the checkbox adds an css reset. without this, there's some cellspacing wich causes the space between cells.
EDIT:
to get this on your own (without using the normalized css), just add:
table{
border-spacing: 0;
}
Upvotes: 2
Reputation: 1007
Next is the Normalized CSS checkbox, selected by default. If selected, the fiddle will be rendered with normalize.css which is removing most of the browser styling of many HTML tags.
From here: http://doc.jsfiddle.net/basic/introduction.html?highlight=normalized
Upvotes: 1