Right Align Numbers in standard Textbox?

0
I would like to right align numbers in a standard Textbox, any pointers for the css that will accomplish this? Thanks, Mike
asked
2 answers
4

Hi Mike,

Like Daniel suggested, you can use the text-align property. I just tested this out and it worked.


.right-form-control .form-control{
    text-align: right;
}

 

answered
1

Hi Mike, would float:right; or text-align:right; give you the desired effect you're looking for?

answered