gpt4 book ai didi

html - 阻止侧面导航栏压缩内容

转载 作者:太空宇宙 更新时间:2023-11-04 14:12:05 26 4
gpt4 key购买 nike

我正在使用示例代码创建侧边导航栏,请参见下面的代码:

<!DOCTYPE html>
<html>
<style>
body {
font-family: "Lato", sans-serif;
}

.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}

.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s
}

.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}

.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}

#main {
transition: margin-left .5s;
padding: 16px;
}

@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
</style>
<body>

<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
<a href="#">Findme About</a>
<a href="#">Services</a>
<a href="#">ents</a>
<a href="#">Contact</a>
</div>

<div id="main">
<h2>Sidenav Push Example</h2>
<p>Click on the element below to open the side navigation menu, and push this content to the right.</p>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">&#9776; open</span>
</div>

<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}

function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>

</body>
</html>

但是我确实发现了一个问题,如果我改变

<a href="#">About</a>

<a href="#">Findme About</a>

,现在尝试滑动导航栏时再试试看结果,你会发现“Findme”会被挤到“关于”的下面一行,这样在打开或关闭时,它们就会变成两行酒吧。我怎样才能阻止它?不过,我希望“Findme”和“About”位于同一行。

最佳答案

试试这个:

.sidenav{
white-space: nowrap;
}

这会阻止你的li a换行

关于html - 阻止侧面导航栏压缩内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40297495/

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