'How do I move input value to the right side [duplicate]
How do I move input value to the right side of the input box with css?
<input id="calc" value="0">
Solution 1:[1]
#calc {
text-align: right;
}
<input id="calc" value="0">
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Marco |
