There is a text type field for the input element. Placeholder must be applied to this field. All anything, but there is still one condition. It is necessary to place a red star at the end of the text (a "required field for filling" type of footnote).
To do this, I use the pseudo-element ::after :
#myy .t3::-webkit-input-placeholder::after { content: '*'; color: red; } #myy .t3:-moz-placeholder::after { content: '*'; color: red; } #myy .t3::-moz-placeholder::after { /* Firefox 19+ */ content: '*'; color: red; } #myy .t3:-ms-input-placeholder::after { content: '*'; color: red; } In chrome works. But there is no Firefox. Maybe I'm doing something wrong?