3 ms·
I write like yours more often and avoid using * selector as much as possible in my CSS. Using :not(:first-child) is more obvious for me and my co-workers who wi
by azhsetiawan 4y ago
I write like yours more often and avoid using * selector as much as possible in my CSS. Using :not(:first-child) is more obvious for me and my co-workers who will read that CSS selector.
- jraph 4y ago> avoid using * selector as much as possible in my CSS So do I, I am somehow wired to think "* is going to be very bad for performance because now the rendering engine will need to apply this bunch of rules to any and every element on earth, which might not be only overkill, but which also might have undesirable side effect." It might not really apply here but the feeling is present.
- rofrol 4y ago>The difference between fastest and slowest is only 43ms (0.043 seconds), and I saw around this difference between rendering the same css twice. I think it is best to go for whatever is most readable for you. Personally I find :first-child the most understandable at a glance. https://www.reddit.com/r/web_design/comments/5u6e7b/comment/ddsca51/ https://www.reddit.com/r/web_design/comments/5u6e7b/comment/...
- majou 4y ago43ms is quite a slowdown isn't it? Handful of joules at least.
- jraph 4y agoActually, the only two comparable / equivalent options exposed in this page related to this discussion, ul > * + * vs li:not(:first-child), are 50.8ms vs 40.9ms (respectively) for 10 page loads. The browser is not named, so I would guess Chrome. I'm not convinced the difference is not proven significant, we need more data points than that to know for sure, but it seems insignificant. So yes, readability should be the determining factor here. Other browsers might see different results, especially Firefox which has a very fast / efficient CSS engine. ps: a difference of 43 ms for one page load would be huge indeed. By comparison, a frame in a 30 fps video is 33 ms.
- xigoi 4y ago:not applies to almost every element, so it's not any better.
- jraph 4y agovery true indeed!