gpt4 book ai didi

css - 相同浏览器中的不同显示,Windows - OSX

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

我有一个这样的菜单栏: enter image description here

完美运行,但在 OSX(相同浏览器(Chrome 或 Firefox),相同分辨率)上显示如下:

enter image description here

这是我的代码:

 @media (min-width: 1440px) and (max-width: 1920px) {

.last-item .menu-title {
margin-right: 3px;
}

#leo-mainnav ul li.last-item:hover {
background-color: #001b48;
color: #fff;
width: 134px;
}
}

http://jsfiddle.net/brfyqzqd/3/

有什么想法吗?谢谢

最佳答案

只需在 #leo-mainnav ul li.last-item.active#leo-mainnav ul li.last-item.active 中设置 width 132px 而不是 110px

#leo-mainnav ul li.last-item:hover {
width:132px; /*So the Contactos is also centered when not hovering or active*/
}
#leo-mainnav ul li.last-item:active {
background-color: #001b48;
color: #fff;
width: 132px;
}

#leo-mainnav ul li.last-item:hover {
background-color: #001b48;
color: #fff;
width: 132px;
}

JSFiddle

关于css - 相同浏览器中的不同显示,Windows - OSX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26906696/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com