我有以下数据: 小提琴
占位符工作得很好,直到您键入某些内容、 ctrl + A和 delete。如果这样做,占位符就会消失,再也不会出现。
怎么了? 我怎么能有一个可满足的 div 的占位符?
HTML:
<div class="test" placeholder="Type something..." contenteditable="true"></div>
.test {
width: 500px;
height: 70px;
background: #f5f5f5;
border: 1px solid #ddd;
padding: 5px;
}
.test[placeholder]:empty:before {
content: attr(placeholder);
color: #555;
}