前提・実現したいこと
理想
画像のような感じにしたいです。
帯上の3つの画像は均等配置
帯下の10つの画像はセンター中央で3段目は2段目の5枚目と6枚目の下にしたいです。
現状
帯上は均等配置はできている(?)
ブラウザに依存しない形がいいとは思っています。
ブラウザの横幅が変わると帯上が動きます。。
帯下の3段目ですがtext-align:でcenter,leftでやってみても上手くいきません。
分かる方、どこを直せばいいか教えていただきたいです。
よろしくお願いします。
html
1<!DOCTYPE html> 2<html lang="ja"> 3 4<head> 5 <meta charset="UTF-8"> 6 <title>Document</title> 7</head> 8<style type="text/css"> 9 .content { 10 text-align: center; 11 margin-top: 70px; 12 } 13 14 .submenu { 15 display: flex; 16 text-align: center; 17 justify-content: space-evenly; 18 19 } 20 21 .sample { 22 font-size: 40px; 23 margin-top: 100px; 24 background-color: #98fb98; 25 width: 100%; 26 } 27 28 .item_1, 29 .item_2, 30 .item_3 { 31 margin-left: 10%; 32 } 33 34 .horizontal_image { 35 margin-top: 40px; 36 text-align: center; 37 } 38 39 div.row_spot1, 40 .row_spot2, 41 .row_spot3 { 42 width: 1540px; 43 margin: 0 auto; 44 } 45 46 .row_spot3 { 47 text-align: left; 48 padding-left: 207px; 49 } 50 51 .row_spot1>div, 52 .row_spot2>div, 53 .row_spot3>div { 54 display: inline-block; 55 } 56 57</style> 58 59<body> 60 <div class="content"> 61 <div class="submenu"> 62 <div class="item_1"> 63 <img src="star.jpg" width="200" height="200" alt="gazou"> 64 </div> 65 <div class="item_2"> 66 <img src="star.jpg" width="200" height="200" alt="gazou"> 67 </div> 68 <div class="item_3"> 69 <img src="star.jpg" width="200" height="200" alt="gazou"> 70 </div> 71 </div> 72 </div> 73 <div class="sample">メイン</div> 74 <div class="horizontal_image"> 75 <div class="row_spot1"> 76 <div> 77 <img src="star.jpg" width="200" height="200" alt="gazou"> 78 </div> 79 <div> 80 <img src="star.jpg" width="200" height="200" alt="gazou"> 81 </div> 82 <div> 83 <img src="star.jpg" width="200" height="200" alt="gazou"> 84 </div> 85 <div> 86 <img src="star.jpg" width="200" height="200" alt="gazou"> 87 </div> 88 </div> 89 <div class="row_spot2"> 90 <div> 91 <img src="star.jpg" width="200" height="200" alt="gazou"> 92 </div> 93 <div> 94 <img src="star.jpg" width="200" height="200" alt="gazou"> 95 </div> 96 <div> 97 <img src="star.jpg" width="200" height="200" alt="gazou"> 98 </div> 99 <div> 100 <img src="star.jpg" width="200" height="200" alt="gazou"> 101 </div> 102 </div> 103 <div class="row_spot3"> 104 <div> 105 <img src="star.jpg" width="200" height="200" alt="gazou"> 106 </div> 107 <div> 108 <img src="star.jpg" width="200" height="200" alt="gazou"> 109 </div> 110 </div> 111 </div> 112</body> 113 114</html> 115
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/03 15:50
2021/02/03 21:36
2021/02/04 01:25 編集
2021/02/04 11:46 編集
2021/02/05 01:24