去除input边框以及选中时边框 默认样式 和 设置圆角

<input type="text" >

 input {
       
        border: 0;  // 去除未选中状态边框
        outline: none; // 去除选中状态边框
        background-color: rgba(0, 0, 0, 0);// 透明背景
        border-radius:9px; // 设置圆角
 
    }

猜你喜欢

转载自blog.csdn.net/weixin_43343144/article/details/89555345
今日推荐