最小宽度不起作用,但最大宽度是。
这是元标记:
<meta name="viewport" content="width=device-width, initial-scale=1">
这是我的代码:
@media only screen and (min-width: 1301px) {
.video-banner {
width: 100%;
height: 575px;
margin: 0;
background: white;
}
}
@media only screen and (max-width: 1300px) {
.video-banner {
width: 100%;
height: 250px;
margin: 0;
background: white;
border: 1px solid white;
}
}