伪元素改变password类型input框的默认样式实例页面

回到相关文章 »

代码:

CSS代码:
.hidden::-ms-reveal { display: none; }
.bg::-ms-reveal { background-color: #f0f3f9; }
                
HTML代码:
默认:<input type="password" /><br><br>
隐藏:<input type="password" class="hidden" /><br><br>
背景:<input type="password" class="bg" />
                

效果:

默认:

隐藏:

背景: