嘿傢伙我不完全接受多媒體查詢。這裏是我的意思多個媒體查詢不起作用
的html代碼:
<div class="container">
<div class="jumbotron">
<h1 id ="jumbo_text">{% block jumbo_text1 %} {% endblock %}</h1>
<h2 id ="jumbo_text2">{% block jumbo_text2 %} {% endblock %}</h2>
</div>
</div>
CSS代碼:
@media only screen and (min-width: 200px) and (max-width: 767px) {
.jumbotron {
display: none;
}
}
@media only screen and (max-width: 768px){
.jumbotron {
height: 200px !important;
width:300px;
background-image: url("../../img/jumbo_pics/bbj_class.jpg");
}
}
基本上是第二媒體查詢作品,但第一個沒有。爲什麼?
僞代碼:
devices that are at minium 200px and maximum 360px dont show jumbotron
devices above 360px but below 768px show jumbotron with height of 200px and width of 300px
我真的糊塗max-width
和min-width
太
之間不max-width
意味着一個裝置,它的寬度爲最大n
,因此下面n
樣式應用於各種規模?
並且確實min-width
是指最小寬度爲n
以及所有尺寸大於n
這種樣式適用的設備?
我會收到這樣嗎?
來包裝這件事:
- 怎麼辦多個媒體查詢具有不同範圍?
- 是我的
min-width
和max-width
正確的認識?
你能告訴我一個代碼片段來可視化正確的做法嗎? – Zion
確定這麼像 在我的文章中的僞代碼 要寫在CSS將如何看起來像? – Zion