複数枚の写真を2列(2カラム?)で中心線に寄せて表示したい。
html
1 <main> 2 <div class = "works"> 3 <img src = "shawn.jpg" alt="picure"/> 4 </div> 5 <div class = "works"> 6 <img src = "shawn.jpg" alt="picure"/> 7 </div> 8 <div class = "works"> 9 <img src = "shawn.jpg" alt="picure"/> 10 </div> 11 <div class = "works"> 12 <img src = "shawn.jpg" alt="picure"/> 13 </div> 14 </main>
css
1main{ 2 width:100%; 3 margin-left: auto; 4 margin-right: auto; 5 display:flex; 6 flex-wrap:wrap; 7 justyify-content:center; 8 align-items: center; 9} 10main div.works{ 11 width:calc(50%-10px); 12 margin:5px; 13} 14#works img{ 15 width:100%; 16}
いろいろなサイトを廻ってみて、いろいろ足したりしましたが自力では解決できなそうなので、ご教授ください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/18 01:15