I am using a framework that decorates a form by adding a field_with_errors class around the labels and inputs. I want to style these such that an asterisk appears after the input element.
<div class="field_with_errors"> Label: </div>
<div class="field_with_errors"> <input type="text"/> </div>
The :after selector works fine with the div, however this inserts content after the label too:
See: http://jsfiddle.net/zLHMN
Modifying the selector to target just the input, and the asterisk disappears entirely
See: http://jsfiddle.net/zLHMN/1/
Is it possible to insert content after the input only just using css?
Thanks for any help.