前提・実現したいこと
https://gyazo.com/5f354c7e4a30f777ea39aadfaf5efab2
https://gyazo.com/12a139f270d9b28749918f59b5eae677
https://gyazo.com/dd7b1cc0adc8b3f7936d214a9663e086
画面縮小時,段階によってデザインが変わってしまうのですが、pngで添付した2カラムの状態で縮小できるように実装したいです。
該当のソースコード
HTML
1 <section class="p-about"> 2 <div class="c-heading"> 3 <h2 class="c-heading__ttl">ABOUT</h2> 4 <p class="c-heading__txt">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit est facilis maiores, perspiciatis</p> 5 </div> 6 <ul class="p-photoList"> 7 <li class="p-photoList__item"><img class="p-photoList__photo" src="./assets/images/about_01.jpg" alt="紹介写真1"/></li> 8 <li class="p-photoList__item"><img class="p-photoList__photo--small" src="./assets/images/about_02.jpg" alt="紹介写真2"/></li> 9 <li class="p-photoList__item"><img class="p-photoList__photo--small" src="./assets/images/about_03.jpg" alt="紹介写真3"/></li> 10 <li class="p-photoList__item"><img class="p-photoList__photo" src="./assets/images/about_04.jpg" alt="紹介写真4"/></li> 11 </ul>
CSS
1 2@media screen and (max-width: 768px) { 3 /* SP style */ 4 .p-about { 5 padding: 70px 20px; 6 } 7 .p-photoList { 8 display:block; 9 margin-top: 70px; 10 margin-right: auto; 11 margin-left: auto; 12 } 13 14 .p-photoList__Photo { 15 height: 400px; 16 border-radius: 20px; 17 } 18 19 .p-photoList__Photo--small { 20 height: 400px; 21 border-radius: 20px; 22 } 23 24 .p-photoList__item:nth-child(-n+3){ 25 margin-bottom: 10px; 26 } 27} 28@media screen and (min-width: 769px) { 29 /* PC style */ 30 .p-about { 31 padding: 100px 0; 32 } 33.p-photoList { 34 display: flex; 35 flex-wrap: wrap; 36 margin-top: 70px; 37 justify-content: center; 38 } 39 40 .p-photoList__photo { 41 width: 600px; 42 height: 300px; 43 border-radius: 20px; 44 } 45 46 .p-photoList__photo--small { 47 width: 400px; 48 height: 300px; 49 border-radius: 20px; 50 } 51 52 .p-photoList__item:nth-child(-n+2) { 53 margin-bottom: 10px; 54 } 55 56 .p-photoList__photo:first-child { 57 margin-right: 30px; 58 } 59 60 .p-photoList__photo--small:last-child { 61 margin-right: 30px; 62 } 63}
試したこと
imgのwidthを固定ではなく%にするべきだと思うのですが、%で実装すると
display: flex;
flex-wrap: wrap; が全く効かなくなってしまいます。
HTMLでimgを書かずに、cssにbackground-imageで実装したら実現できたのですが(本来はそうすべきなのかもですが)、今のコーディングで失敗している原因を知りたいです。
回答1件
あなたの回答
tips
プレビュー