asp.net CheckBoxList各項最小寬度CSS樣式(相容性good)

來源:互聯網
上載者:User

ASP.NET中,CheckBoxList裡的選擇都是自動寬度的,屬性時沒有設定各項寬度的設定。
參考了一下網上的最小寬度樣式, 複製代碼 代碼如下:/* 最小寬度 */
.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等。

如果有發現其它瀏覽器不能顯示CheckBoxList選項最小寬度的,請通知我。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.