您的位置:首页 > Web前端 > HTML

html的input输入框边框

2015-12-09 12:22 615 查看
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;
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: