ASP.NET中,CheckBoxList里的選擇都是自動寬度的,屬性時沒有設置各項寬度的設置。
參考了一下網(wǎng)上的最小寬度樣式,
復制代碼 代碼如下:
/* 最小寬度 */
.min_width{min-width:300px;
/* sets max-width for IE */
_width:expression(document.body.clientWidth 300 ? "300px" : "auto");
}
寫成如下:
復制代碼 代碼如下:
style>
.ckblstEffect td
{
min-width:80px;
_width:expression(document.body.clientWidth 80 ? "80px" : "auto");
}
/style>
復制代碼 代碼如下:
asp:CheckBoxList ID="ckblstEffect" runat="server" DataTextField="MC"
RepeatDirection="Horizontal" RepeatColumns="10" CssClass="ckblstEffect"
DataValueField="ID" ondatabound="ckblstEffect_DataBound">
/asp:CheckBoxList>
在遨游4兼容模式(IE7)下不起作用,仔細看樣式中的表達式,怎么看都覺得不對勁。
改成下面的樣式就可以了。
復制代碼 代碼如下:
style>
.ckblstEffect td
{
min-width:80px;
width:expression(this.offsetWidth 80 ? "80px" : "auto");
}
/style>
在IE10、遨游4極速模式及兼容模式下均可正確顯示最小寬度,此樣式除了用于CheckBoxList外,也可用于DIV等。
如果有發(fā)現(xiàn)其它瀏覽器不能顯示CheckBoxList選項最小寬度的,請通知我。
您可能感興趣的文章:- layui表格checkbox選擇全選樣式及功能的實例
- jQuery實現(xiàn)自定義checkbox和radio樣式
- android開發(fā)教程之自定義控件checkbox的樣式示例
- CheckBoxList多選樣式jquery、C#獲取選擇項
- 利用JavaScript更改input中radio和checkbox樣式
- 控制input的CSS但不影響CheckBox以及Radio的樣式
- 用圖片替換checkbox原始樣式并實現(xiàn)同樣的功能