美文网首页
原生input 背景颜色透明 没有边框 placeholder颜

原生input 背景颜色透明 没有边框 placeholder颜

作者: 偶头像超凶 | 来源:发表于2021-02-26 17:41 被阅读0次

背景颜色透明 没有边框

background-color:transparent;
border:0; 
outline: none;

placeholder颜色改变

input::-webkit-input-placeholder { 
    /* WebKit browsers */ 
    color: #00ecfc; 
} 
input:-moz-placeholder { 
    /* Mozilla Firefox 4 to 18 */ 
    color: #00ecfc; 
} 
input::-moz-placeholder { 
    /* Mozilla Firefox 19+ */ 
    color: #00ecfc; 
} 
input:-ms-input-placeholder { 
    /* Internet Explorer 10+ */ 
    color: #00ecfc; 
}

相关文章

网友评论

      本文标题:原生input 背景颜色透明 没有边框 placeholder颜

      本文链接:https://www.haomeiwen.com/subject/lyhvfltx.html