各レコードのリピーターを使用して表示されるチェックボックスを中央揃えにしようとしています。
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;
}
しかし役に立たない...何かアイデアはありますか?
ありがとう