我正在开发 Frontend Mentor 的 Single Price Grid 组件,但无法让我的移动设计具有响应能力。当我缩小浏览器时,它的顶部就会脱离页面顶部。
这是一个链接: https: //single-price-grid-component.jordanchude.now.sh/
这是我的存储库:https://github.com/jordanchude/single-price-grid-component/blob/master/index-style.css
这是我的媒体查询中的一段代码。
@media (max-width: 1000px) {
.container {
display: flex;
flex-direction: column;
}
#bottom-row {
flex-direction: column;
box-sizing: content-box;
width: 200%;
}
#top-box {
display: flex;
flex-direction: column;
}
#bottom-right-box {
border-radius: 0px 0px 15px 15px;
}
#bottom-left-box {
border-radius: 0px;
}
#top-box, #bottom-right-box, #bottom-left-box {
box-sizing: border-box;
padding: 20px;
}
这也是我正在谈论的内容的照片。我可以向下滚动但不能向上滚动。
蛊毒传说
相关分类