使用unset而不是重置所有属性

重置元素的属性时,不需要重置每个单独的属性:

  1. button {
  2. background: none;
  3. border: none;
  4. color: inherit;
  5. font: inherit;
  6. outline: none;
  7. padding: 0;
  8. }

你可以用all简写來指定所有元素的属性。 将该值设置为unset会将元素的属性更改为其初始值:

  1. button {
  2. all: unset;
  3. }

注意: IE11不支持allunset的簡寫。