Universal Selector and Pseudo Element

全称セレクターは擬似要素にマッチしない。ような気がする。

Reset Color to green with Universal Selector


This normal text should be green.

.test p::before {
  color: red;
  content: 'If this text inserted with pseudo element is green, the universal selector also matches pseudo elements.';
}

* {
  color: green !important;
}