HTML CSS input输入框样式


/* 修改输入框placeholder的字体颜色*/
input::-webkit-input-placeholder { 
/* WebKit browsers */ 
color: rgb(12, 203, 130);
} 
input:-moz-placeholder { 
/* Mozilla Firefox 4 to 18 */ 
color: rgb(12, 203, 130);
} 
input::-moz-placeholder { 
/* Mozilla Firefox 19+ */ 
color:rgb(12, 203, 130);
} 
input:-ms-input-placeholder { 
/* Internet Explorer 10+ */ 
color: rgb(12, 203, 130);
}

/* 点击输入框不显示边框*/
input{
	outline:medium;
}
/* 修改输入框placeholder的字体颜色end*/

你可能感兴趣的:(html5,css,前端)