右对齐输入字段中的数字

时间:2010-12-18 17:27:56

标签: html

使用这个例子,我如何在输入字段中右对齐数字?

<html>
<body>

<form name="input" action="html_form_action.asp" method="get">
Taxes: <input type="number" name="Taxes" value="" /><br />
Shipping: <input type="number" name="shipping" value="" align="right" /><br />
<input type="submit" value="Submit" />
</form> 

<p>Click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>

1 个答案:

答案 0 :(得分:22)

使用以下方式设置输入样式:

text-align: right;

这将证明你输入中的所有文字都是正确的。