I have a submit button that is simply tagged like this:
<input type='submit' name='foo' value='Continue ⇢' class='button' />

I would like the right arrow to point the arrow a little more.
<input type='submit' name='foo' value='Continue <span class='makemeatadlarger'>⇢</span>' class='button' />
obviously doesn't work ... Is there an easy way to do this (I'm not interested in adding tons of div div / spans and preferably without using images)
UPDATE Inspired by the accepted answer below, I came up with the following:
HTML
<button type='submit' name='foo' value='Continue' class='button'>Continue</button>
CSS
.button:after { content: ' ⇢'; font-size: 220%; height: 26px; margin-top: -19px; float: right; }
Example

And heres a live example in jsfiddle
source share