How do I move input value to the right side

Viewed 115

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

<input id="calc" value="0">

1 Answers

#calc {
text-align: right;
}
<input id="calc" value="0">

Related