Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html Internet Explorer 7 li链接悬停错误_Html_Css_Internet Explorer 7 - Fatal编程技术网

Html Internet Explorer 7 li链接悬停错误

Html Internet Explorer 7 li链接悬停错误,html,css,internet-explorer-7,Html,Css,Internet Explorer 7,仅限Internet Explorer 7;FireFox,IE 8,Chrome都很好用 我左边的菜单 如果您将任何链接悬停,则BrackRound将变为透明的,我如何解决此问题 这是我的CSS: div.moduletable_mg { border-top: 1px solid #9C907D; padding: 0px; margin: 0px; } div.moduletable_mg ul { padding: 15px; margin: 0px 0px 0px 0p

仅限Internet Explorer 7;FireFox,IE 8,Chrome都很好用

我左边的菜单

如果您将任何链接悬停,则BrackRound将变为透明的,我如何解决此问题

这是我的CSS:

div.moduletable_mg { 
 border-top: 1px solid #9C907D;
 padding: 0px;
 margin: 0px;
}
div.moduletable_mg ul {
 padding: 15px;
 margin:  0px 0px 0px 0px;
}
div.moduletable_mg ul li {
 background: url(../images/menu-arrow.png) no-repeat left center;
 min-height: 15px;
 padding: 0px 10px;
 margin:  0px;
}
div.moduletable_mg a {
 /*display:inline-block;*/
 /*background: transparent !important;*/
 font-size: 14px;
 padding: 0px;
 margin:  0px;
 color: #483A22;
}
div.moduletable_mg a:link, div.moduletable_mg a:visited {
 text-decoration: none; 
}
div.moduletable_mg a:hover, div.moduletable_mg a:active {
 text-decoration: underline;
}

这似乎是一个“hasLayout”问题。问题实际上在于您的
#gdw2 mcleft
容器。如果我在它上面添加了一个样式以提供容器“布局”,那么它的行为似乎符合您的要求(我使用了
zoom:1
作为测试,但您可能希望添加一些其他样式属性以提供布局)。