取消input默认样式

有时候input在页面中被聚焦后会出现默认的边框样式,可以通过以下方法取消去除

.input:focus{
outline: none;
}

原文地址:https://www.cnblogs.com/webwangjie/p/6679983.html