【发布时间】:2015-01-22 10:05:34
【问题描述】:
我有一个 ViewPort 和一个具有 TopBar 的面板。
CSS 部分
.mytoolbar .x-btn-default-toolbar-small
{
border-style:none;
background-color:blue;
}
ASPX:
<ext:Panel runat="server" Layout="HBoxLayout" ID="TestPanel" Region="Center" BodyStyle="border-style:none;">
<LayoutConfig>
<ext:HBoxLayoutConfig Align="Stretch"></ext:HBoxLayoutConfig>
</LayoutConfig>
<TopBar>
<ext:Toolbar runat="server" Cls="mytoolbar" Flat="true" ClassicButtonStyle="false" MinHeight="40">
<Items>
<ext:Button runat="server" ID="btnTest" Text="Test"></ext:Button>
</Items>
</ext:Toolbar>
</TopBar>
</ext:Panel>
背景颜色在 Firefox 和 Chrome 中确实是蓝色,但在 Internet Explorer 11 中是灰色。
如何在 IE 中解决这个问题?
【问题讨论】:
标签: css internet-explorer extjs ext.net