前提・実現したいこと
写真のように、初級コース 中級コース 上級コースの画像の間に余白を作りたいです。
発生している問題・エラーメッセージ
### 該当のソースコード div { text-align: center; } h1 { color:darkslategray; } .section{ display:flex; } .pic{ width: 30%; height: 30%; } .desk{ flex: 1; margin: 100px; } .h2{ text-align:center; padding-top:100px; } /* .pic{ max-width:100%; height:auto; } */ .gazo-box img{ justify-content:space-between; border:1px red solid; padding-right:20; padding-left:20; } .btn{ text-decoration: none; background: #ff6666; width:100px; padding:5px; border-radius:5px; text-align:center; justify-content:center; } <!DOCTYPE html> <html lang="ja"> <head> <link rel="stylesheet" href="css/style.css"> <meta charset="UTF-8"> <title>練習</title> </head> <body> <header> <img src="img/main-vsual.png"> </header> <div class="desk"> <h1>デイトラとは</h1> <section> <div class="pic"> <img src="img/about.png"> </div> <div class="desk"> <p>デイトラとは、無料で・迷わず・楽しく学べるプログラミング学習アプリです。毎月設定された課題をこなしていくだけで、未経験から30日でプログラミングが身に付きます。 1日1題30日でプロのWebエンジニアを目指しましょう。 </div> </p> </div> </section> <div> <h1>コース一覧</h1> <div class="gazo-box"> <img src="img/web_first.png" alt="" width="400"height="200"> <img src="img/web_second.png" alt="" width="400"height="200"> <img src="img/web_third.png" alt="" width="400"height="200"> </div> <h1>お問い合わせ</h1> <h2>さあ今日から始めよう</h2> <div class="btn">無料で今日から始めよう!</div> </body> </html> ### 試したこと ここに問題に対して試したことを記載してください。 中央揃えかつ等間隔に余白を作るためにjustify-content:space-betweenを入力したのですが、余白が生まれませんでした。 ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。
どこの空白?
ちとわかりません
ああ、画像の間の空白なのね
回答1件
あなたの回答
tips
プレビュー