在我为高中篮球队工作的网站上,某些元素在 Internet Explorer 中不起作用。该网站是 hermantownbasketball.com。男孩篮球侧边栏应该有嵌套的下拉菜单,当您将鼠标悬停在球队上时会出现一个,例如“高中”,然后当您将鼠标悬停在球队下的年级上时会出现另一个,例如 9 年级。这在 chrome 中工作得非常好,但是,我无法让它在任何版本的 Internet Explorer 中工作。下面是我正在使用的 html 和相应的 css 的一部分。
不幸的是,我不知道足够多的 CSS 来知道我的代码 IE 不喜欢哪一部分或如何修复它。
任何帮助是极大的赞赏!
HTML
<span class = "boyItem">
<h3>High School</h3>
<li class="group">
<h4>9th Grade</h4>
<div class = "nested">Schedule</div>
<div class = "nested">Events</div>
<div class ="nested">Forms</div>
<div class ="nested">Calendar</div>
</li>
<li class="group">
<h4>JV/Varsity</h4>
<div class = "nested">Schedule</div>
<div class = "nested">Events</div>
<div class = "nested">Forms</div>
<div class = "nested">Calendar</div>
</li>
</span>
/* Creates the box around the title for each boy section. */
.boyItem h3 { background:#1C23E8;
color:#EFFA20;
padding-right:2px; padding:10px;
font-size:18px;
margin-left:-30px;
margin-top:-10px;
}
###CSS
.boyItem h3:hover { background:#2A8FF5; }
/* Prevents the boy sub-sections from being visable */
.boyItem li h4 { position: absolute; left:-9999px; font-size:15px; list-style-type:none;}
/* Shows the boy sub-sections when user mouses over the section title. */
.boyItem:hover li h4 {
position:relative;
left:10px;
background:#1C23E8;
color:#EFFA20;
padding-left:20px;
padding:5px;
}
.boyItem:hover li h4:hover { background:#2A8FF5;}
.nested { position:absolute;
left:-9999px;
background:#352EFF;
color:#EFFA20;
padding-right:2px;
padding:4px;
font-size:14px;
margin:2px;
margin-left:30px;
margin-top:0px;
margin-right:0px;
margin-bottom:-2px;}
.group:hover .nested {position:relative; left:0px; }
.group:hover .nested:hover { background:#2A8FF5}