将鼠标悬停在菜单项上 可在 Firefox 中使用,但在 Internet Explorer 中无法使用
这是悬停在 firefox 中工作但在 IE 中不起作用的编码
.menu
{
margin-top:1px;
display:inline-block;
background-color:#FCFAB4;
color:#000000;
height:30px;
width:121px;
padding-top:10px;
font-size:13px;
font-weight:bold;
font-family:Geneva, Arial, Helvetica, sans-serif;
text-align:center;
}
.menu:hover
{
background-color:#990000;
color:#FFFFFF;
border-bottom:#CC0000;
text-decoration:none;
cursor:pointer;
}
帮助我
Here is the coding in which hover is working inf firefox but not in IE
.menu
{
margin-top:1px;
display:inline-block;
background-color:#FCFAB4;
color:#000000;
height:30px;
width:121px;
padding-top:10px;
font-size:13px;
font-weight:bold;
font-family:Geneva, Arial, Helvetica, sans-serif;
text-align:center;
}
.menu:hover
{
background-color:#990000;
color:#FFFFFF;
border-bottom:#CC0000;
text-decoration:none;
cursor:pointer;
}
Help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
IE7 支持 :hover 在锚点上,但 IE8 将支持在 li 上。
IE7 supports :hover on anchors, but IE8 will support it on li's.
当您说 IE 时,最好让我们知道是哪个 (IE6/7/8)。 IE6 不支持 :hover 任何东西,但 IE7/8 支持。
如果您需要它在 IE6 中工作,您有几个选择。
重构您的代码以仅在菜单中使用 's。
使用 Dean Edwards 提供的一个很好的脚本来“升级”IE6 和 IE7,以解决诸如此类的多个问题。 http://www.charlescooke.me.uk/web/lab_notes/ie7_script。 html
你可以使用一些 CSS 和 JS 来让 IE6 识别 :hover 在其他元素上
IE6 上除了查看你的代码之外,我现在还没有真正看到它是如何工作的。 您需要的是一个菜单元素,其中的内容设置为显示:无,您还应该使用位置:绝对/相对和顶部:XXpx/左侧:XXpx进行定位。 然后在 :hover 上更改为 display: block。
希望这可以帮助,
丹尼斯
When you say IE it's better to let us know which (IE6/7/8). IE6 does not support :hover on anything but , IE7/8 do.
If you need this to work in IE6 you have a few options.
Refactor your code to only use 's in your menu.
Use a nice script from Dean Edwards to "upgrade" IE6 and IE7 for several issues such as this one. http://www.charlescooke.me.uk/web/lab_notes/ie7_script.html
You can use a bit of CSS and JS to give IE6 a way to recognise the :hover on other elements
IE6 aside looking at your code I'm not really seeing how it works now. What you need is to have a menu element with what evers in it set to display:none, also you should position in using position:absolute/relative and top: XXpx/left: XXpx. Then on :hover you change to display: block.
Hope this helps,
Denis
我不相信 ':hover' 伪类是为 IE 中除 'a' 标签以外的任何东西实现的。 尝试另一种方法(使用“onmouseover”事件)。
I don't believe the ':hover' pseudo-class is implemented for anything other than 'a' tags in IE. Try another approach (use 'onmouseover' event).
假设您的菜单项是用户可能从水平“菜单”中选择的链接,并且看起来与此接近:
尝试此 CSS:
如果您使用无序列表作为菜单,则列表项不是“菜单”,而是无序列表list 是“菜单”,所以在那里应用该类。 并将CSS应用到锚点上以实现悬停功能。
如果您的菜单是垂直的,请忽略 .menu li 样式上的 display:inline 。
Assuming your menu item is a link a user might select from a horizontal "menu" and looks close to this:
Try this CSS:
If you are using an unordered list as a menu, the list items are not the "menu", the unordered list is the "menu", so apply the class there. And apply the CSS to the anchors to achieve hover functions.
If your menu is vertical, ignore display:inline on the .menu li styles.