HTML Form How to - Change input number field alignment from right








Question

We would like to know how to change input number field alignment from right.

Answer


<!DOCTYPE html>
<html>
<head>
<style>
input[type=number] {<!--from w w w . ja  va 2 s .  c  o  m-->
  direction: rtl;
}
</style>
</head>
<body>
  <input type="number">
</body>
</html>

The code above is rendered as follows: