Samantha J T Star
Samantha J T Star

Reputation: 32808

What does the "Normalized CSS" button do in fiddle?

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

Answers (2)

oezi
oezi

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

f2lollpll
f2lollpll

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

Related Questions