使用css修改input的文字提示语颜色

使用css修改input的文字提示语颜色 修改input的placeholder的颜色

<style>
 	/* Safari,Chrome WebKit browsers */ 
	input::-webkit-input-placeholder {
		color: #ccc;
	}
	/* 火狐 Mozilla Firefox 4 to 18 */ 
	input:-moz-placeholder {
		color: #ccc;
	}
	/* 火狐 Mozilla Firefox 19+ */ 
	input::-moz-placeholder {
		color: #ccc;
	}
	/* Internet Explorer 10+ */ 
	input:-ms-input-placeholder {
		color: #ccc;
	}
</style>

在线运行

相关知识点

市场主流五大浏览器内核 https://www.lmcjl.com/post/14.html

本文链接:https://my.lmcjl.com/post/20435.html

展开阅读全文

4 评论

留下您的评论.