无法在阿拉伯语中对齐Radiobuttonlist的文本

时间:2018-03-10 09:38:16

标签: css asp.net arabic right-to-left radiobuttonlist

我无法将RadTeobuttonlist的DisplayText对齐。

   <asp:Label ID="Q1_Lbl" runat="server" Text="<%$ Resources:Question, Q1_Lbl%>" ForeColor="Black" Font-Size="18px"></asp:Label>
                                                <div dir="rtl">
                                                    <asp:RadioButtonList ID="Q1_Radio" runat="server" Font-Size="18px" CssClass="radio-inline" RepeatDirection="Vertical">
                                                        <asp:ListItem Text="<%$ Resources:Answer, Yes_Lbl%>" Value="50"></asp:ListItem>
                                                        <asp:ListItem Text="<%$ Resources:Answer, No_Lbl%>" Value="0"></asp:ListItem>
                                                    </asp:RadioButtonList>
                                                </div>

我得到了这个。 enter image description here

 <style>
        .rtl{direction:rtl;text-align:right;}
.ltr{direction:ltr;text-align:left;}
    </style>

请帮我正确对齐文字。

0 个答案:

没有答案