For example I have
<textarea placeholder="blah blah blah">
</textarea>
and I try to center the placeholder like so...
textarea[placeholder]
{
text-align: center;
}
but when I do that, the textbox cursor starts in the middle instead of the left.
So how do I get the placeholder message to show up in the center of the textarea without changing the starting cursor area?