gpt4 book ai didi

html - 无法隐藏嵌套在 div 中的列表的溢出。

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

我有一个嵌套在紫色 div 中的无序列表。我只希望 div 中(或顶部)的部分可见,并且我希望能够滚动查看其余部分。我已经在较早的元素中完成了此操作。

http://codepen.io/tyl-er/pen/ALAyjq (输入搜索以查看示例)

我尝试使用“溢出:隐藏;”但这是行不通的。

    <!--<span class="glyphicons glyphicons-wifi-alt"></span>
live icon

<span class="glyphicons glyphicons-moon"></span>
not live icon-->

<body>
<div class="box">
<header>
<div class="nav">
<ul>
<li class="favs"><a href="#fav">Favs</a></li>
<li class="online"><a href="#on">Online</a></li>
<li class="offline"><a href="#off">Offline</a></li>
</ul>
</div>
</header>
<div class="list">
<ul>
<li>streamerhouse</li>
<li>freecodecamp</li>
<li>OgamingSC2</li>
<li>brunofin</li>
<li>cretetion</li>
<li>ESL_SC2</li>
<li>storbeck</li>
<li>comster404</li>
<li>habathcx</li>
<li>RobotCaleb</li>
<li>noobs2ninjas</li>
</ul>
</div>
<div class="output"></div>
</div>
<div class="divN"></div>
</body>

/*Colors
#6441A4 (navbar, footer, highlight)
#392E5C
#17141F(background)*/
* {
color: white
}

body {
height: 100%;
width: 100%;
background: #17141f;
}

.box {
height: 80%;
width: 360px;
background: #392E5C;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}

.nav ul {
width: 360px;
margin: 0;
padding: 0;
background: #6441A4;
}
.nav li {
font-family: 'Oswald', sans-serif;
font-size: 1.2em;
line-height: 40px;
height: 40px;
border-bottom: 1px solid #888;
text-align: center;
}

.nav a {
text-decoration: none;
color: #fff;
display: block;
transition: .5s background-color;
}

.nav a:hover {
background-color: #005f5f;
}

.nav a.active {
background-color: #fff;
color: #444;
cursor: default;
}

@media screen and (min-width: 600px) {
.nav li {
width: 120px;
border-bottom: none;
height: 50px;
line-height: 50px;
font-size: 1.4em;
}

/* Option 1 - Display Inline */
.nav li {
display: inline-block;
margin-right: -4px;
}

a {
color: white;
}
a:hover {
color: white;
}

.list ul {
padding: 8px;
overflow: hidden;
overflow-y: scroll;
position: relative;
background:
}

.list li {
width: 360px;
height: 50px;

}

这是元素地址 http://codepen.io/tyl-er/pen/NRPkaV?editors=1100

最佳答案

您应该为您的父级 div 命名列表提供固定高度。试试这个

.list{
height: 346px;
overflow-y: scroll;
overflow-x: hidden;
}

关于html - 无法隐藏嵌套在 div 中的列表的溢出。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39381518/

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