我有以下幾點 -ASP.NET ListItem的文本樣式
<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Vertical" RepeatLayout="Table" CssClass="RBL" TextAlign="Right">
<asp:ListItem Text= "Individual - This is for user" />
<asp:ListItem Text="Enterprise - This is for enterprises" />
</asp:RadioButtonList>
我喜歡做的是強調只是個別和企業。
我試圖像下面,但沒有奏效:
<asp:ListItem Text= <span class="underline"> Individual </span>-....
因爲我:
Error 71 The 'Text' property of 'asp:ListItem' does not allow child objects.
檢查這個問題:http://stackoverflow.com/questions/8123757/how-to-add-tooltip-for-checkboxlist-for-each-item-in-asp-net您可以使用相同的方法將類屬性添加到ListItems,具體取決於值爲 –
的值,以便強調與常規超鏈接(也用下劃線表示)之間的文本衝突,請將粗體或斜體樣式視爲替代方式。 – MikeM