input默认样式与修改
input 默认
padding:1px 2px; border-style: inset; border-width: 2px; box-sizing:content-box;
若是button submit
box-sizing:border-box;
其他
display: inline-block; -webkit-appearance: textfield; background-color: ; cursor: text; font: 400 13.3333px Arial;
border虽然是2px,但显示的是1px效果
box-sizing在大部分元素下效果是border-box,但在input中,大部分效果是content-box