私はこれを機能させることができないので、私はよく理解:before
していると:after
は思いません。フォームの必須フィールドの後にアスタリスクを追加しようとしています。
私のコードは簡単です:
<input id="name" type="text" required="required" autofocus="" placeholder="Name" autocomplete="off" value="" maxlength="40" class="required" name="name" />
/* Required field */
.required:after {
content: '*';
color: #EF5F5F;
}
なぜこれが機能しないのですか?
ここに私のフィドル:http://jsfiddle.net/3EFTN/