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

Positioning the RequiredMark of RadLabel

HOW TO

How can I move the RequiredMark from the right side of the RadLabel to before the text? 

DESCRIPTION

The RadLabel can easily be customized to allow different styles using CSS.  By default, the RequiredMark is positioned to the right of the RadLabel's text. 

label-required-mark  

SOLUTION  

In order to move the RequiredMark from the right to left side of the RadLabel, use the following CSS:

<style type="text/css">
    .RadLabel .rlRequiredMark {
        float: left;
    }
</style>
<telerik:RadLabel ID="MyRadLabelID" runat="server" RequiredMark="*" MarkDisplayMode="Required" Text="This is my RadLabel"></telerik:RadLabel>

SEE ALSO

In this article