0

我有我的客户端,其侧面板在 Firefox 和 Chrome 上正确显示,但在 IE 上显示不佳。

我什至尝试过使用 <!DOCTYPE HTML><meta http-equiv="X-UA-Compatible" content="IE=7,9,10" />但不知何故使用<meta http-equiv="X-UA-Compatible" content="IE=7,9,10" >下拉菜单与页面内容重叠。

http://www.cleanenergycentre.com.au/index.php/solarpower/solar-panels

4

1 回答 1

1

为了修复 z-index,只需添加 position:relative 到容器

DIV#dropdownmenuContainer{
position:relative;
}

并将这部分代码添加到您的 template.css 以将 li 的宽度固定到下拉列表中

DIV#dropdownmenuContainer ul li li{
*display:block;
}
于 2013-09-05T17:58:35.403 回答