去除input边框以及选中时边框 默认样式
2019-08-05 本文已影响0人
秋分落叶
<input type="text" >
input {
border: 0; /*去除未选中状态边框*/
outline: none; /*去除选中状态边框*/
background-color: rgba(0, 0, 0, 0); /* 透明背景*/
}
<input type="text" >
input {
border: 0; /*去除未选中状态边框*/
outline: none; /*去除选中状态边框*/
background-color: rgba(0, 0, 0, 0); /* 透明背景*/
}