一、input 添加padding后宽度会变化web
input中添加以下样式,固定 box 的尺寸 spa
box-sizing: border-box; -webkit-box-sizing: border-box;//谷歌 -moz-box-sizing: border-box;//火狐
二、input 聚焦后取消边框样式code
input:focus { outline: none; }