試圖居中對齊一個複選框,該複選框使用每個記錄的中繼器顯示。asp.net center align複選框
asp:Repeater id="rptSelected" runat="server">
<HeaderTemplate>
<table class="detailstable FadeOutOnEdit">
<tr>
<th style="width:200px;">Contacted</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<th style="width:200px;">
<input type="checkbox" class="AlignCheckBox" name='<%# CallUtilityChangeId((int)Eval("CompanyId")) %>'
<%# SetCheckboxValue((bool)Eval("Contacted"))%> />
</th>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
使用:
.AlignCheckBox
{
text-align: center;
}
,但無濟於事...任何想法?
感謝你們
應用類的'th' – MuhammadHani 2013-03-12 16:18:46