如何将悬停效果添加到textarea占位符?

时间:2018-10-25 14:04:10

标签: html css hover textarea placeholder

所以我有一个文本区域,像这样:

textarea::placeholder:hover {color:black;}
<textarea maxlength='220' placeholder='Say Something!'>
</textarea>

为什么这不起作用?

1 个答案:

答案 0 :(得分:0)

您需要先检查文本区域上的悬停。

textarea:hover::placeholder { 
  color: red;
}
<textarea maxlength='220' placeholder='Say Something!'>
</textarea>