让div支持placeholder属性/模拟输入框的placeholder属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了让div支持placeholder属性/模拟输入框的placeholder属性相关的知识,希望对你有一定的参考价值。

div:empty:before{
content: attr(placeholder);
color:#bbb;
}
div:focus:before{
content:none;
}

以上是关于让div支持placeholder属性/模拟输入框的placeholder属性的主要内容,如果未能解决你的问题,请参考以下文章

html5的placeholder这个属性在获得焦点时怎样让默认的字体消失呢?

可以在文本框的placeholder=""插入搜索图标吗?

如何让textarea随着内容自适应高度

select选择框怎么加placeholder提示信息

使IE支持placeholder

HTML里input标签里的placeholder、for属性的作用?