gpt4 book ai didi

html - 如何使用带有输入复选框的 html+css 制作响应式菜单?

转载 作者:可可西里 更新时间:2023-11-01 13:44:04 25 4
gpt4 key购买 nike

单击复选框时,navmargin:left 应该增加并进入屏幕。再次单击时,它应该会减小并离开屏幕。它不是那样工作的。我的代码有什么问题?

HTML

<input type="checkbox" id="res-nav">
<label for="res-nav"><i class="fa fa-reorder" style="font-size:36px"></i></label>

风格

 body label {
position: fixed;
display: block;
margin-left:-100px;
margin-top: -115px;
z-index:99;
}

nav{
margin-left:-130px;
transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
}

#res-nav:checked ~ nav {
margin-left:50px;
}

最佳答案

label {
position: fixed;
display: block;
margin-left:-100px;
margin-top: -115px;
z-index:99;
}

nav{
margin-left:-9999px;
transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
background:tomato;
max-width:100vw;
}

#res-nav:checked ~ nav {
margin-left:0;
}
<input type="checkbox" id="res-nav">
<label for="res-nav"><i class="fa fa-reorder" style="font-size:36px"></i>s</label>
<nav>Navbar</nav>

关于html - 如何使用带有输入复选框的 html+css 制作响应式菜单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48841185/

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