gpt4 book ai didi

html - 无法让溢出滚动工作

转载 作者:太空宇宙 更新时间:2023-11-04 02:42:36 24 4
gpt4 key购买 nike

我希望能够在内容向右中折叠时在页面内滚动(内容在单击边栏标签时折叠/转换)。我不希望主页滚动。

这里有一个codepen,但是因为界面尺寸的原因定位错了, http://codepen.io/anon/pen/XXKEpE

  body {
margin: 0;
padding: 0;
}
.box {
width: 600px;
height: 600px;
float: left;
border: dotted 1px black;
margin-left: 200px;
background-color: green;
}
.page-content {
position: relative;
z-index: 1;
background-color: pink;
transition: .2s ease;
transform: scale(1);
transform-origin: right center;
overflow: scroll;
height: 100%;
}
.toggle {
text-decoration: none;
font-size: 30px;
color: black;
transition: .2s ease;
position: fixed;
top: 20px;
left: 20px;
z-index: 2;
}
.sidebar {
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
width: 120px;
padding: 30px;
background: #333;
z-index: 0;
}
li {
color: rgba(255, 255, 255, 0.8);
font-family: sans-serif;
font-size: 16px;
margin-bottom: 16px;
-webkit-font-smoothing: atialiased;
cursor: pointer;
}
li:hover {
color: rgba(255, 255, 255, 1);
}
#sidebartoggler {
display: none;
}
#sidebartoggler:checked + .page-wrap .toggle {
left: 200px;
}
#sidebartoggler:checked + .page-wrap .page-content {
transform: scale(0.7);
}
<body>

<input type="checkbox" id="sidebartoggler" name=" " value="" />

<div class="page-wrap">

<label for="sidebartoggler" class="toggle">☰</label>

<div class="page-content">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>

<div class="sidebar">
<ul>
<li>Home</li>
<li>Projects</li>
<li>Clients</li>
<li>Blog</li>
<li>Contact</li>
</ul>
</div>

</div>

最佳答案

.page-wrap, body, html{
height:100%;
}

你需要在你的 css 中使用这个 height:100% 才能工作。基本上如果你想让页面高度达到 100%,它的所有祖先都需要是 100%

关于html - 无法让溢出滚动工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34428358/

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