边框

在定义无边框样式时,使用 0 代替 none

Bad

  1. .foo {
  2. border: none;
  3. }

Good

  1. .foo {
  2. border: 0;
  3. }