Is there a test HTML file that I can use to reset CSS?

There are a lot of CSS dumped . I am creating something for mobile devices and I want to skip as much unnecessary CSS as possible, so I was wondering if there is an exhaustive HTML test page. Can I run some of the CSS resets against to test them?

Testing rules is also a great way to find out which extreme cases are needed, which ones are targeted, and why.

+5
source share
3 answers

After inspecting today, I finally found an amazing site called http://cssresetr.com/ that offers you the opportunity to test a fairly large set of style sheets on many pending element groups!

I can possibly just steal the HTML for each group and drag it onto one page, and then try some stylesheets that are not listed.

0
source

You can skip any tags in reset that, as you know, you will not use. For example, if you never use definition lists, skip resetting dl, dt, and dd.

Remember that CSS reset is just a starting point , so you can be sure that your page looks the same in different browsers.

+1

All Articles