html写到input边框时,选中会出现选中时边框,默认样式看起来有点违和 下面带来去除的方法
<input type="text" >
HTML
复制
input { border: 0; // 去除未选中状态边框 outline: none; // 去除选中状态边框 background-color: rgba(0, 0, 0, 0);// 透明背景 }
html写到input边框时,选中会出现选中时边框,默认样式看起来有点违和 下面带来去除的方法
<input type="text" >
HTML
复制
input { border: 0; // 去除未选中状态边框 outline: none; // 去除选中状态边框 background-color: rgba(0, 0, 0, 0);// 透明背景 }