Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a HTML test file I can use for CSS resets?

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

Testing the rules is also a great way to learn what edge cases are required, what they target, and why.

like image 251
Xeoncross Avatar asked Nov 14 '22 04:11

Xeoncross


1 Answers

You can certainly skip any tags in your reset that you know you will not be using. For example, if you never use definition lists, skip the dl, dt and dd resets.

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

like image 63
18 revs, 10 users 77% Avatar answered Nov 17 '22 07:11

18 revs, 10 users 77%