Closed valtlai closed 7 years ago
See PR #12
What do we gain from having it one character shorter?
(An ASCII whitespace is U+0009 TAB, U+000A LF, U+000C FF, U+000D CR, or U+0020 SPACE.)
so its effectively what we have today
I thought why not use a shorter one and save some bytes. But I understand this has no practical effect.
@valtlai, https://github.com/MadLittleMods/postcss-increase-specificity/pull/12#issuecomment-304317070
Seems good to me 🤔
:not(#\9)
, where\9
is a tab character, can be used. It works in the same way as:not(#\20)
but is one character shorter.Other alternatives are
\A
,\C
and\D
.