鼠标点击文本后出现蓝边框,让它隐藏或消失
首先给文本框添加一个选择区,这里假设是 class=“input”,css如下
.input:focus{
border:none;
outline:none;
}