gpt4 book ai didi

html - 为什么子菜单在 firefox 中显示正确但在 chrome 中显示不正确

转载 作者:行者123 更新时间:2023-11-28 18:49:18 25 4
gpt4 key购买 nike

为什么 chrome 在子菜单上显示额外的 10 个像素?关于父菜单,他们是否以不同的方式呈现位置?这是 CSS:

#nav ul li ul{
display: none;
width: 250px;
opacity: .7;
z-index: 999;

}

#nav ul li:hover ul{
display: block;
background-color: #444444;
padding: 0;
margin: 0;
position: absolute;
top: 20px;
border-top: 19px solid black;
}

查看实际效果:

http://guardianweb.edulence.com/model3/

最佳答案

基于 what I can see ,看起来 Chrome 和 IE9 正在适本地呈现页面,但 Firefox 11 不是。是this您指的是额外的 10 个像素?

就个人而言,我会删除 top: 20px 让 Firefox 11 呈现与 Chrome 和 IE9 相同的子菜单。

关于html - 为什么子菜单在 firefox 中显示正确但在 chrome 中显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9792951/

25 4 0