text 添加占位符,在-DIV标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 添加占位符,在-DIV标签相关的知识,希望对你有一定的参考价值。

There are lot of options using javascript, but if you want to do it in css.Try this:

html:

<div contentEditable=true data-text="Enter text here"></div>
css:

[contentEditable=true]:empty:not(:focus):before{
    content:attr(data-text)
}

以上是关于text 添加占位符,在-DIV标签的主要内容,如果未能解决你的问题,请参考以下文章