标签:html 取消边框 处理 put :focus one color focus 添加
1、input 添加padding后宽度会变化
input中添加如下样式,固定 box 的尺寸
box-sizing: border-box; -webkit-box-sizing: border-box;//谷歌 -moz-box-sizing: border-box;//火狐
2、input 聚焦后取消边框样式
input:focus {
outline: none;
}
标签:html 取消边框 处理 put :focus one color focus 添加
原文地址:https://www.cnblogs.com/tynam/p/10936290.html