修改表单默认样式

修改input的默认样式

        input{
            background: none;
            outline: none;
            border: 0px;
        }
    
input{caret-color:red;} 改变光标颜色
input::-webkit-input-placeholder {color:blue;} 改变placeholder属性的颜色
input{color: green;} 改变输入文字的颜色

修改button的默认样式

        button{
            background-color: #fff;
            border: none;
        }
        button:focus{
            outline: none;//删除点击按钮时出现的蓝色边框
        }
            

猜你喜欢

转载自www.cnblogs.com/BGweizheng/p/8989051.html