2

How do I move input value to the right side of the input box with css?

<input id="calc" value="0">
callmeog
  • 71
  • 2
  • 7

1 Answers1

3

#calc {
text-align: right;
}
<input id="calc" value="0">
Marco
  • 511
  • 6
  • 16