我得到了一个分配,以使模式低于响应。我应该放置更多的媒体查询或修改模式大小到百分比?是否有任何技术,技巧或网站可以帮助我实现目标?
提前谢谢。
模态父母:
.OverlayModal {
z-index: 2;
align-items: center;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
position: fixed;
bottom: 0;
left: 0;
right: 0;
top: 0;
}
模态:
.SignInModal {
background: rgb(255, 255, 255);
border-radius: 20px;
border: 1px solid rgb(204, 204, 204);
margin: auto;
width: 238px;
height: 550px;
outline: none;
overflow: scroll;
padding: 0;
@media (min-width: 768px) {
width: 420px;
height: 400px;
}
}
答案 0 :(得分:2)
简单来说,
当每个屏幕上的布局都相似时,会使用基于百分比的布局。
当您想要更改不同屏幕尺寸的布局时,会使用媒体查询。