input::-webkit-input-placeholder{ color:red; } input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:red; } input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */ color:red; } input:-ms-input-placeholder{ /* Internet Explorer 10-11 */ color:red; }
IE9及以下版本不支持input的placeholder属性,需要用JS来做兼容。
原文地址:https://www.cnblogs.com/xiaobaiv/p/9080127.html
时间: 2024-10-28 19:46:50