如何增加复选框列表项文本的宽度,
我在右侧有更多空间,但文本以多行出现,但没有出现在右侧。
并且可以将复选框放在文本左侧吗?
提前致谢
<asp:CheckBoxList ID="cbList" runat="server" Width="300px" ForeColor="Black" TextAlign="Right">
<asp:ListItem Value="10" Text="Invoice" ></asp:ListItem>
<asp:ListItem Value="20" Text="Payments"></asp:ListItem>
<asp:ListItem Value="30" Text="General Ledger posting"></asp:ListItem>
</asp:CheckBoxList>
.chkBoxList td
{
width:120px; /* or percent value: 25% */
}
列表项 3 出现在多行中,我想将它放在一行中。