スマホの表示時に縦並びにした画像を横幅いっぱいに広げたいです。
メディアクエリのmax-width:600px;が効かないのはなぜでしょう。。
HMTLのimgに画像のサイズを指定しているのがよくないのでしょうか。
ご教授お願い致します!
HTML
1 <div class="bicycle"> 2 <div class="con"> 3 <div class="con2"> 4 <img src="img/bicycle1.jpg" width="268px" height="176px" alt="テキストテキストテキスト"> 5 <h3>タイトルタイトル</h3> 6 <p>テキストテキストテキスト</p> 7 </div> 8 9 <div class="con2"> 10 <img src="img/bicycle2.jpg" width="268px" height="176px" alt="テキストテキストテキスト"> 11 <h3>タイトルタイトル</h3> 12 <p>テキストテキストテキスト</p> 13 </div> 14 15 <div class="con2"> 16 <img src="img/bicycle3.jpg" width="268px" height="176px" alt="テキストテキストテキスト"> 17 <h3>タイトルタイトル</h3> 18 <p>テキストテキストテキスト</p> 19 </div> 20 </div> 21 </div>
CSS
1.bicycle .con{ 2 display: flex; 3 justify-content: center; 4 align-items: center; 5} 6 7.bicycle .con2{ 8 width: 268px; 9 margin-right: 17px; 10 text-align: center; 11} 12 13 14@media(max-width:600px ){ 15 .bicycle .con{ 16 flex-direction: column; 17 } 18 19 .bicycle .con2{ 20 max-width: 600px; 21 height: 100%; 22 margin-right: 0; 23 margin-bottom: 30px; 24 } 25}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/07 22:34