How do you right align an editable field on the web? I tried adding ALIGN=“right” to the input fields HTML other property but it seemed to just create a div. How do I get the text typed into the field to right align?
Subject: How to right align a editable field on the web?
Use the style property instead of other:
text-align: right;
Subject: RE: How to right align a editable field on the web?
Thanks again Stan!