我有一个 SharePoint 页面,其中水平显示以下三个控件,如下所示:
CSS如下:
.main {
display: flex;
flex-direction: row;
justify-content: flex-start;
.searchText {
width: 100%;
max-width: 330px;
margin-right: 25px;
}
.statusLabel {
margin-right: 25px;
margin-bottom: 8px;
}
.statusDropDown {
min-width: 300px;
max-width: 300px;
}
}
将页面缩放到 400% 时,控件不可见/被截断,如下所示:
有没有办法在缩放到 400% 时垂直显示控件而不会被截断并确保所有控件都可见?
这是我到目前为止所尝试的:
CSS:
@media only screen and (min-width : 600px) and (max-width : 1200px) {
.searchContainer {
display: block;
.searchText {
width: 50%;
display: block;
}
.statusLabel {
width: 50%;
display: block;
}
.statusDropDown {
width: 50%;
display: block;
}
}
}