想知道如何使弹出滚动。
弹出部分中的内容在移动屏幕中被剪短。
在桌面上,它显示得很好。但是在移动设备上,只有背景被滚动,而不是弹出。
.overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.overlay:target {
visibility: visible;
opacity: 1;
}
.popup {
margin: 70px auto;
padding: 20px;
background: #fff;
border-radius: 5px;
width: 30%;
position: relative;
transition: all 5s ease-in-out;
}
.popup .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #333;
}
.popup .content {
max-height: 30%;
overflow: auto;
}
@media screen and (max-width: 700px){
.popup{
width: 70%;
} <span><a href="#popup">Full Recipe</a></span>
<div id="popup" class="overlay">
<div class="popup">
<h3>Foxtail Millet Porridge:</h3>
<a class="close" href="#">×</a>
<div class="content">
<span>Ingredients:</span>
谢谢你的帮助!
发布于 2022-06-25 09:47:12
内容高度太大,不允许滚动。
以下是全码的代码库
.popup {
transform: translateY(-60px); /* moves container up the page */
margin: 70px auto;
padding: 20px;
background: #fff;
border-radius: 5px;
width: 30%;
position: relative;
transition: all 5s ease-in-out;
}
.content {
height: 250px; /* adjust this depending on the size that you want the
container to be */
}
.popup .content {
overflow-y: scroll;
}https://stackoverflow.com/questions/72751977
复制相似问题