This is done automatically for every browser except Chrome.
I\'m guessing I have to specifically target Chrome.
Any solutio
Besides all of above,I have two ideas.
You can add an element that imitates the palceholder.Then using javascript control the element showing and hiding.
But it is so complex,the other one is using the brother's selector of css.Just like this:
.placeholder { position: absolute; font-size: 14px; left: 40px; top: 11px; line-height: 1; pointer-events: none; }
.send-message input:focus + .placeholder { display: none; }
23333,I have a poor English.Hope solve your problem.