CSS-取消input标签选中时默认边框背景
input {
outline: none;
background: transparent;
border: none;
outline: medium;
}
*:focus {
outline: none;
/*background-color: transparent;*/
}
/*::selection {
background: transparent;
}
::-moz-selection {
background: transparent;
}*/
正文到此结束