/* 设置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; }
原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/277077.html