在定义无边框样式时,使用 0 代替 none。
0
none
Bad
.foo { border: none;}
.foo {
border: none;
}
Good
.foo { border: 0;}
border: 0;
本文档使用 BookStack 构建