Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will we need CSS Reset if we don't consider any version of IE (Internet explorer)?

Tags:

html

css

xhtml

Will we need to use a CSS Reset if we don't consider any version of IE (Internet Explorer)?

I'm making a website where I don't necessarily to consider any version of IE. Would it be OK to not to reset anything for Safari, Chrome, Firefox and Opera?

Is it only IE which forces us to use a CSS reset, or do other browsers also have inconsistencies?

like image 687
Jitendra Vyas Avatar asked Nov 14 '22 02:11

Jitendra Vyas


2 Answers

The point of css reset files isn't solely to make certain functionality work in older versions of internet explorer, it's to make the job of presenting using css the same between browsers.

like image 84
jonezy Avatar answered Nov 16 '22 15:11

jonezy


Yes, you would still need to if you want to support many browsers. It is not only Internet Explorer that needs reset.

Which browser was it, I forgot, but either it was Firefox or Opera that had different default settings too, not just IE.

Nevertheless, it is a safe move to do, and you can rest assured that it will save you a few problems.

Usually, a reset is only about a few kilobytes, which is not much.

like image 28
ambiguousmouse Avatar answered Nov 16 '22 15:11

ambiguousmouse