<div class="form-group form-group-lg">
<label class="col-md-2 control-label">{{translation.FIRST_NAME}}:</label>
<div class="col-md-10 required">
<input type="text" name="firstName" class="form-control" ng-model="Addressid.nameFirst" ng-minlength="3" placeholder="First Name" required>
<div ng-messages="rmaForm.firstName.$error">
<div ng-message="required">
Please enter your first name
</div>
</div>
</div>
</div>
css
.required:after { content:" *"; }
Question
I know how to get asterisk after a label, but I want it to be after the Input fields. At the moment it is after the error message in second div. Is this possible with CSS to get it after a input field?