前提・実現したいこと
LPをレスポンシブ対応で作成しております。
数か所でレスポンシブが効かない部分が発生しており原因の特定がわからず困っております。
発生している問題・エラーメッセージ
CSS内でメディアクエリを使用しソースコードを書いた場合に、GoogleChromeの検証ツールで確認すると反映されておらず該当のソースコードに斜線が入っている状態です。
該当のソースコード
----------------HTML---------------------------------------------------------------------------
<header class="header"> <div class="header-wrapper"> <img src='assets/lookme.png' class="lookme"> <div class="tel"> <p class="tel-title">お問い合わせはこちら</p> <p class="tel-number"><img src="assets/tel.png" align="bottom" class="tel-image"><a href="tel:0522117921" style="color: #ff367f;">052-211-7921</a></p> </div> </div> </header>
--------------CSS------------------------------------------------------------------------------
*{ box-sizing: border-box; width: 100%; margin: 0%; padding: 0%; } html{ width: 100%; height: auto; } body{ width: 100%; overflow: scroll; word-wrap: break-word; } header{ width: 100%; height: 959px; background-image: url("top.png"); background-repeat: no-repeat; background-size: cover; .header-wrapper{ display: flex; justify-content: space-between; padding: 3%; } img.lookme{ width: 50%; max-width: 100%; height: 50%; } div.tel{ width: 30%; background-color: #dcdcdc; padding: 0.5% 2%; font-family: 'MS Pゴシック','MS PGothic',sans-serif; } img.tel-image{ width: 7%; max-width: 100%; height: 7%; } @media screen and (max-width: 768px){ img.tel-image{ width: 10%; max-width: 100%; height: 10%; } } p.tel-title{ text-align: center; font-size: 140%; } @media screen and (max-width: 768px){ p.tel-title{font-size: 100%;} } @media screen and (max-width: 767px){ div.tel{width: 45%;} p.tel-title{font-size: 2.5vw;} p.tel-number{font-size: 2.2vw;} } p.tel-number a{ font-size: 200%; text-decoration: none; margin-left: 10px; } @media screen and (max-width: 1024px){ p.tel-number a{font-size: 140%;} } @media screen and (max-width: 896px){ p.tel-number a{font-size: 150%;} } @media screen and (max-width: 768px){ p.tel-number a{font-size: 140%;} } }
補足情報(FW/ツールのバージョンなど)
他のメディアクエリの記載は問題なく反映されており、セレクタ詳細度の問題だと思うのですが自身では解決できておらずアドレス頂けますと幸いです。
回答1件
あなたの回答
tips
プレビュー