gpt4 book ai didi

css - 固定菜单栏 css 放大和缩小

转载 作者:太空宇宙 更新时间:2023-11-04 15:45:01 25 4
gpt4 key购买 nike

放大和缩小时网页中的菜单不会固定为图中所示的标题图像:

enter image description here

这个的css脚本如下 #导航菜单{ z-索引:99999; 边距顶部:40px; position:absolute; 宽度:100%; margin :0; 填充:0; 最小宽度:90%; 宽度:950px;

 }

#navMenu li {
float:left;
color:#ececec;
list-style-type:none;
width:80px;
}

#navMenu ul {
width:970px;
font-size:16px;
color:#000000;
}


#navMenu li a{

height:15px;
float:left; display:inline;
font-weight:700;
float:left;
color:#707070;
display: block;
padding: 8px 12px;
text-decoration: none;display: block;
padding: 8px 12px;
text-decoration: none;
background-image: url(img/image_menubutton.JPG);
border-right:1px solid white;
margin-right:12px;
font-family:"Georgia",Georgia,Serif;
font-weight:900;
font-size:19px;
text-align: center;
zoom: 1;
max-width: 30%;

}
#navmenu li.item1{background-image: url(img/about.JPG);}



#navmenu li a:hover {
color:33CCFF;
}

解决这个问题的方法是什么?

最佳答案

如果你使用 position:fixed;然后它不会在滚动时移动,这就是我假设你正在寻找的,同样当缩放相同的东西时,它会保持固定在你想要的位置,添加可能 top:0;左:0;取决于您希望将其放置在何处——也许尝试添加一些 html?除此之外,这就是我能帮你的全部了

 #navmenu{ 
z-index:99999;
margin-top:40px;
position:fixed;
width:100%;
top:0;
left:0;
margin:0;
padding:0;
min-width: 90%;
width:950px;
}

#navMenu li {
color:#ececec;
list-style-type:none;
width:80px;
}

#navMenu ul {
width:970px;
top:0;
left:0;
font-size:16px;
color:#000000;
}


#navMenu li a{
position:fixed;
height:15px;
font-weight:700;
float:left;
color:#707070;
display: block;
padding: 8px 12px;
text-decoration: none;
background-image: url(img/image_menubutton.JPG);
border-right:1px solid white;
margin-right:12px;
font-family:"Georgia",Georgia,Serif;
font-size:19px;
text-align: center;
zoom: 1;
max-width: 30%;
}

关于css - 固定菜单栏 css 放大和缩小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11824160/

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