Captcha Right-to-Left Support
The Telerik UI Captcha fully supports right-to-left (RTL) language locales. To turn on the RTL support, set dir=rtl
to the HTML or body element or, at least, to its parent element. You can also use the direction:rtl
CSS property.
<div dir="rtl">
@(Html.Kendo().Captcha()
.Name("Captcha")
// Other options omitted for brevity.
)
</div>