修改表单默认样式

 

修改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;//删除点击按钮时出现的蓝色边框
        }
            
posted @ 2018-05-04 09:26  BGweizheng  阅读(273)  评论(0)    收藏  举报