【发布时间】:2015-05-02 06:26:48
【问题描述】:
我正在使用媒体查询属性,但我无法使其适用于“高度”值。
关于“宽度”值,它工作得很好,但代码根本不影响 div 的高度,只是宽度。
我正在使用这两个代码
@media screen and (min-width: 1400px) and (max-width: 2000px) {
.first-div{
height: 450px;
position: absolute;
margin-top: 100px;
min-width: 1900px;
width: 100%;
}
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
.first-div{
height: 20px;
width: 100%;
position: absolute;
margin-top: 100px;
min-width: 1200px;
}
}
【问题讨论】:
-
您的代码中没有媒体查询高度。
标签: html css media-queries media