CSSに記述したメディアクエリが機能しません。
ソースコードは下記です。
html
1<div id="tileBox" style="height: 920px"> 2 <ul 3 id="tilesAll" 4 class="tilesContents ui-tabs-panel ui-widget-content ui-corner-bottom" 5 aria-labelledby="ui-id-1" 6 role="tabpanel" 7 aria-expanded="true" 8 aria-hidden="false" 9 > 10 <li class="event" style="position: absolute; top: 16px; left: 182px"> 11 <a href="#"> 12 <div> 13 <p><span>2020-12-25</span> <span></span></p> 14 <h5>テキスト</h5> 15 </div> 16 </a> 17 </li> 18 <li class="interview" style="position: absolute; top: 16px; left: 518px"> 19 <a href="#"> 20 <div> 21 <p><span>2020-12-24</span> <span></span></p> 22 <h5>テキスト</h5> 23 </div> 24 </a> 25 </li> 26 <li style="position: absolute; top: 694px; left: 182px"> 27 <a class="btnViewmore" href="/more">VIEW MORE</a> 28 </li> 29 </ul> 30</div>
css
1 @media (min-width: 922px) and (max-width: 1223px) { 2 div#tileBox { 3 height: 920px !important; 4 } 5 } 6 @media (min-width: 864px) and (max-width: 921px) { 7 div#tileBox { 8 height: 1360px !important; 9 } 10 }
現状上の922px1223pxの画面幅の時はCSSが適用されるのですが、下の幅(864px921px)のときにheightの値が変わりません。
なぜこの記述では機能しないのか、ご教授いただければ幸いです。
何卒、よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー