All you need is .message { padding-top: 10px; }
to achieve the result you're after.
It will apply to any <textarea>
that has the class of message
EDIT
If you don't want to apply padding to the element, try this instead. It literally just targets the placeholder
.
.message::-webkit-input-placeholder {
padding-top: 10px;
}
.message::-moz-input-placeholder {
padding-top: 10px;
}
.message:-moz-input-placeholder {
padding-top: 10px;
}
.message:-ms-input-placeholder {
padding-top: 10px;
}
Can be seen in action here, I set up 2 <textarea>
's to show this - http://jsfiddle.net/andyjh07/tan7k4rf/