本文介绍了输入文字在占位符中添加带有其他颜色的星形的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在<input type="text" />
的占位符中添加具有其他颜色的星形?
How can I add a star with other color in placeholder for <input type="text" />
like this?
推荐答案
http://jsfiddle.net/coma/fuexebw7/
::-webkit-input-placeholder:after {
content: "*";
color: red;
}
这篇关于输入文字在占位符中添加带有其他颜色的星形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!