Wednesday, March 28, 2012

Text direction in textbox

Hi guys, is there any property in the textbox control that allows the user to input text in a right-to-left text direction?

Thanks.There is a CSS style attribute calledlayout-flow

In the html header of you page, put the following to control the flow in all form elements (e.g. textboxes included):

<STYLE>
INPUT {layout-flow : vertical-ideographic}
</STYLE>

0 comments:

Post a Comment