Simple, common problem.
You have a textbox on an html page. It (by default) aligns the text to the left. This can be annoying for numbers.
<input type=”text” />
To get it to align to the right, you can use something like this:
<input style=”text-align: right;” type=”text” />
February 24th, 2010 |