用 helper class 为单个按钮加 margin,防止元素复用时产生不必要的 margin
HTML
html
<button class="btn helper">Text</button>
CSS
css
.helper {margin-right: 1.6rem;}
为按钮增加内边距
如果设置 border 数值为负,周边空间则会收到影响,但用 box-shadow 就不会:
所以可以这样设置:
box-shadow: inset 0 0 0 3px #fff;