Possible Duplicate:
CSS :after pseudo element on INPUT field
Here is what I have that I am trying to use to style an input button:
.save:before, input[type="submit"]:before {content: "\2714";}
and here is the HTML that I am trying to style:
<input type="submit" id="edit-submit" name="op" value="Save" class="form-submit">
This works all other elements that are not input's, but is there a way to get it to work on the above code?
Thank you