Normalized CSS, option in JSFiddle how to add it to a document

We had an applet created for us in JSFiddle. It only works when there is one checkmark in the field where normalized CSS indicated. How we activate it on our website. I have never heard of this.

Any ideas?

Wonderful

+6
source share
2 answers

http://doc.jsfiddle.net/basic/introduction.html?highlight=normalized#choose-framework

Next, the Normalized CSS checkbox is selected, selected by default. If selected, the script will be displayed using normalize.css, which removes most of the browser style of many HTML tags.

You want to include the following file in your template / pages.

 http://jsfiddle.net/css/normalize.css 

I would recommend copying it and referencing a local copy, rather than referencing it on my server, although this is a bad form :)

+10
source

What normalized CSS on jsfiddle is CSS Reset

To add it to your site, copy and paste the following code: CSS Reset

+4
source

Source: https://habr.com/ru/post/892327/


All Articles