alignment on input field
Posted: Mon Apr 22, 2013 7:45 pm
How can one change the alignment on input fields ?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
How can one change the alignment on input fields ?
Hi Adriano,
You would need to create CSS asset:
codeinput.alignRight {
text-align: right;
}
input.alignCenter {
text-align: center;
}/code
Then in Input component properties set "Class Name": alignCenter or alignRight.
Thank you....