I know it's possible to style the placeholder of an HTML element using the ::placeholder
CSS pseudo-element.
E.g.
input[type="text"]::placeholder {
... /* style rules */
}
But is it possible to set the text of the placeholder in CSS?
input[type="text"]::placeholder {
content: "Common placeholder for all inputs" /* content rules */
}