Placeholders.js icon indicating copy to clipboard operation
Placeholders.js copied to clipboard

Respect input::placeholder:after css selector in IE9

Open focused opened this issue 9 years ago • 0 comments

I want to colorize the last letter of placeholders for required fields, after works in modern browsers, but not with the polyfill in IE9.

<input type-"text" value="" placeholder="name" />
input::placeholder:after {
  color: red;
  content: "*";
  opacity: 1;
}

focused avatar Oct 09 '15 10:10 focused