New to Telerik UI for ASP.NET Core? Download free 30-day trial

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>
<div dir="rtl">
    <kendo-captcha name="Captcha">
        // Other options omitted for brevity.
    </kendo-captcha>
</div>

See Also

In this article