修改 input框、textarea框的placeholder样式
作者:互联网
/* 设置input框提示内容的样式 */ input::-webkit-input-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; } /*webkit 内核浏览器*/ input::-moz-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; } /*Mozilla Firefox 19+*/ input:-moz-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; } /*Mozilla Firefox 4 to 18*/ input:-ms-input-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; } /* 设置textarea框提示内容的样式 */ textarea::-webkit-input-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; } /*webkit 内核浏览器*/ textarea::-moz-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; } /*Mozilla Firefox 19+*/ textarea:-moz-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; } /*Mozilla Firefox 4 to 18*/ textarea:-ms-input-placeholder { font-size: 14px; color: #ccc; font-weight: 400; font-family: sans-serif; }
标签:textarea,family,color,input,font,placeholder,size 来源: https://www.cnblogs.com/zyx-blog/p/16520419.html