gpt4 book ai didi

css - overflow-y 滚动导致内容被截断

转载 作者:行者123 更新时间:2023-12-05 07:28:38 26 4
gpt4 key购买 nike

我目前有一个最大高度为 800 像素的容器。它还具有 overflow-y: 滚动。我想要完成的事情很简单(可能没那么简单,所以我问你们!)。

我想继续使用这个 overflow-y 卷轴。但是,我有被切断的内容。我有一个带有 future-dropdown 类的 div,我希望里面的内容有意覆盖这个容器。如果您看一下代码片段,我在 div 中的内容会因为 overflow-y 滚动而被截断。

我怎样才能解决这个问题并且仍然拥有这个?我仍然需要这个可滚动的容器,但我还需要一种方法让我的内容仍然显示在该位置。

请多多指教!

    * {
padding: 0;
margin: 0;
}

.scroll-list {
max-height: 800px;
overflow-y: scroll;
border-radius: 5px;
border: 5px solid blue;
width: 400px;
}

li {
height: 200px;
width: 100%;
border-radius: 2px;
background-color: white;
font-size: 15px;
text-align: center;
list-style-type: none;
background: lightgray;
/* margin: 0 auto; */
}

.future-dropdown {
position: relative;
left: 200px;
}
  <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="index.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="scroll-list">
<ul>
<li>Content <div class="future-dropdown">Future dropdown</div></li>
<li>Content</li>
<li>Content</li>
<li>Content</li>
<li>Content</li>
<li>Content</li>
<li>Content</li>
<li>Content</li>
<li>Content</li>
<li>Content</li>
</ul>
</div>
<script src="" async defer></script>
</body>
</html>

最佳答案

也许你可以这样做

li {
height: 200px;
width: 100%;
border-radius: 2px;
background-color: white;
font-size: 15px;
text-align: left; /*Change from center to left*/
list-style-type: none;
background: lightgray;
padding: 20px; /*Add some padding*/
/* margin: 0 auto; */
}

如果对您有帮助,请告诉我!

关于css - overflow-y 滚动导致内容被截断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53274067/

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