top | item 17301630

CSS Micro Reset

63 points| vladocar | 7 years ago |github.com

47 comments

order
[+] slg|7 years ago|reply
>Another thing: It's Ok for some elements to be different between browsers.

This is one of those lessens that took me a while to learn. I spent a lot of my time early in my career trying to get every pixel the same between between IE and Firefox until someone asked my why I cared. I never gave the "why" much thought until that point; it was just something I felt I needed to do. As long as the site functions correctly and looks good in the various browsers, getting them exactly the same is nothing but a fool's errand.

[+] arendtio|7 years ago|reply
To me it feels like the author of that project didn't get the point of resets.

The problem without resets is not that some client/manager/designer wants to see a pixel perfect page, but that differently sized default elements in different browsers can cause whole layouts to break / become non-functional.

If your layout is robust enough to compensate such variations, that's fine and you probably don't need a reset CSS at all, but the idea of reset CSS is not about efficiency in terms of lines of code, but about efficiency of developer resources. Developing something on top of a 100% defined state is much easier than constantly having to worry about different initial states.

Yes, resets aren't pretty, they are pragmatic.

[+] Brockenstein|7 years ago|reply
sometimes managers and clients are fools.
[+] hit8run|7 years ago|reply
Wow an NPM package for 5 css rules. Reading the description this guy seems to be searching for normalize.css https://github.com/necolas/normalize.css/blob/master/normali...
[+] pornel|7 years ago|reply
You're missing the point here. The author is not looking for normalize.css, but advises against such nuke-it-from-the-orbit approaches.

It's just 5 rules, because you don't need more. And you can copy'n'paste them if you don't want to bother with npm.

[+] lhorie|7 years ago|reply
I got a completely different idea from reading the description. He's saying the whole point why this thing is small is that you don't need to keep stacking changes to the same properties, i.e. why do this:

    /*reset*/
    h1 {margin: 0;}
    /*your pretty styles*/
    h1 {margin: 0 0 10px;}
He argues that you can just drop the first rule because you're going to be setting it to something else later anyways; you should only reset properties that are likely to be final and only tags you actually use.
[+] thex10|7 years ago|reply
The contents:

  /* CSS Micro Reset */

  body { margin: 0 }

  h1, h2, h3, h4, h5, h6 { font-weight:normal }

  table
  {
   border-collapse: collapse;
   border-spacing: 0
  }
  
  th, td
  {
   text-align: left;
   vertical-align: top
  }
  
  img, iframe { border: 0 }
[+] Reedx|7 years ago|reply
Though maybe it's nice to have the options, that this is an NPM package and CDN link seems like a parody.
[+] danyim|7 years ago|reply
What a joke. Where’s box-sizing: border-box, the most common reset of all? Is this another JS engineer seeking Github stars?
[+] saudioger|7 years ago|reply
I agree with the gist of things here, but surprised this doesn't include

    * {box-sizing: border-box;}
[+] vladocar|7 years ago|reply
That will force you to use completely different CSS layout model. Yes today is common practice the use of box-sizing: border-box and it should be the first line of code when you set your layout. I don't what to force anyone to use box-sizing: border-box.
[+] escaper|7 years ago|reply
You don't need to reset things you won't use... then proceeds to reset tables, table properties, and iframe borders? This is the most nonsensical thing I've seen on here. Also resetting all h elements to weight normal when they're the most likely elements to have non-normal weights.
[+] Kequc|7 years ago|reply
Persisting an npm package to your project for 5 css rules is a far more egregious case of "you might not need..." than a simple css reset could ever be.
[+] armandososa|7 years ago|reply
There was a time when I would just add

    *{margin:0;padding:0}
at the start of every project and call it a day. That was my reset.

Later I found that was considered a bad practice, but honestly? I found CSS is very unlikely to be the bottleneck for performance in most things I deal with nowadays.

Anyway, I like this micro-reset but I rarely start css from scratch these days, otherwise I would just memorize these rules.

[+] geuis|7 years ago|reply
> Browser Reset -> Your Reset -> Setting all Resetted Elements -> Probably more styling after.

I get the feeling the author doesn’t completely understand how this all works and what normalize.css and other resets are for.

There is no “browser reset”. There are browser defaults which vary slightly from one to another.

The point of normalize.css and other resets is to level the foundation when starting a new project.

[+] brianzelip|7 years ago|reply
Thanks, this is just what it says it is. Particularly appreciate the insight into headings.

`box-sizing` can be more nuanced than a wild card approach. On production stuff, I tend to use Tachyons’ module, http://tachyons.io/docs/layout/box-sizing/.

[+] temporallobe|7 years ago|reply
I have always been strongly opposed to CSS resets and global CSS styling rules in general. There really is bo need for it if you know how to isolate your classes correctly. Some Atlassian plugins create global styling rules and they tend to break things.
[+] dmitriid|7 years ago|reply
The problem isn't with "isolating classes correctly" (how do you isolate classes correctly in CSS' flat namespace?).

The problem is that even such basic things as lists and paragraphs will look differently in different browsers (different offsets, sizes, line heights etc.). Unless you cover every single element with a "correctly isolated CSS class", you need a global reset.

[+] paulddraper|7 years ago|reply
> if you know how to isolate your classes correctly

Resets are used precisely because browser defaults are not isolated but applied everywhere.

Could you copy or classes or styles everywhere? Yes, you could add a class to every element to reset it, or add full style override to every class.

[+] Theodores|7 years ago|reply
I recently started using CSS Grid with a view to writing concise, maintainable CSS that wasn't 'Jenga CSS' that people only add on to. I also wanted to get away from the 10000+ lines of cruft that many projects seem to think you need.

All was going well with the layout but I wanted to avoid margins and padding, instead I wanted to use grid gaps.

Initially I did not have the 'bravery' to strip out all 10000 lines of cruft, I assumed some of it was 'important'.

However, just 'for a laugh' I thought of getting rid of the normalize.css buried in there, complete with rules for things like IE6/7/8. Much to my surprise my layout suddenly looked awesome, all margin and padding issues resolved. I checked on a few browsers and all is looking very good.

The biggest bonus was on the input boxes. These now work much better for layout and usability on all screen sizes. I can use things like the 'size' attribute and make the boxes sensible for what is going to be entered.

Fluid width type and no fixed breakpoints are also a huge discovery along with CSS variables. I also gave up on divs and spans, not to mention class tags. Instead of these empty calories I use HTML5 tags with schema.org attributes. If a product has a name, description, price or other attribute, I mark it up for the screen readers first then the CSS can work on those attributes. No need for 37 layers of containing 'div' boxes each with class tags for some lame 'Foundation' style framework.

It seems absurd to remove the margin/padding and then have layers of Jenga CSS on top to get it to be as per the some designer's drawing.

The major benefit is in speed, I am sure that people who have been creating this unmaintainable CSS bloat for the last decade or find my approach heretical but the scores on the doors of what 'Lighthouse audit' says don't matter to them either.

I urge anyone to get rid of the resets as well as the inflatable arm bands and to let go of the hand-rails. Some people have never ventured out without their CSS resets, a bit like those children that have never gone anywhere without being in a car.

[+] KayL|7 years ago|reply
Uncss or similar tools are your friend and time saving if you site is simple and under control.

Probably, to clone normalize.css and comment out every lines as starter style is better than this micro reset (applying the same concept)

[+] ericwood|7 years ago|reply
I like the reasoning behind this, but am surprised it doesn't include resets for the (fairly opinionated) user agent styles for lists, which I'd argue for most sites get used more often than tables.
[+] andrewmcwatters|7 years ago|reply
There's no such thing, to my knowledge, as a "browser reset"; there is a standardized normative default user-agent style sheet for HTML4 as specified in CSS level 2.

I agree with everything else the author is saying, though. But there's no point in this existing when normalize.css does. Even then, you really shouldn't be using that in my opinion for the same reasons the author specifies.