画像の間だけに15pxの余白を空けたいのですが、どのようにしたら良いのでしょうか?
教えてください????♀️
HTML
1<div class="photo"> 2 <div class="photo-container"> 3 <img src="./img/square.svg" alt=""> 4 <img src="./img/square.svg" alt=""> 5 <img src="./img/square.svg" alt=""> 6 <img src="./img/square.svg" alt=""> 7 </div> 8</div><!--/photo-->
css
1.photo{ 2 .photo-container{ 3 max-width: 800px; 4 margin: 0 auto; 5 display: flex; 6 flex-wrap: wrap; 7 justify-content: space-between; 8 img{ 9 width: 50%; 10 padding: 0 15px 15px 0; 11 } 12 } 13 }
回答2件
あなたの回答
tips
プレビュー