I want to put a red star after placeholder. Both Chrome and Safari are OK, but doesn't work at Firefox. What I did is
input::-webkit-input-placeholder:after { content: "*";
color: red; }
input::-moz-placeholder:after { content: "*";
color: red; }
input:-ms-input-placeholder:after { content: "*";
color: red; }
in CSS and
<div class="form-group">
<input type="text" name="username" id="username" tabindex="1" class="form-control" placeholder="Email" >
</div>
in HTML.
Why there is nothing after Email
in FIrefox.