html的input输入框边框

1.输入框边框完全隐藏<input type="text" style="outline:none;border:0" />

2.input去边框立体效果,去聚焦加亮,完全去css

.input
{
height:32px;
border-radius:5px;
outline:none;
border-top-style: groove;
border-right-style: groove;
border-bottom-style: groove;
border-left-style: groove;
border:1px solid #a1a1a1;
}

 

原文地址:https://www.cnblogs.com/xiaoliu66007/p/5032428.html