前提・実現したいこと
画面レイアウトを整えたいです。
<h1>のタイトルと説明文が縦並びで中央にあり、 その下にボタン3つを横並びに置きたいです。該当のソースコード
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>ゲーム</title> <link href="https://unpkg.com/sanitize.css" rel="stylesheet"/> <style> * { margin: 10px, auto; padding: 0; box-sizing: border-box; background-color: transparent; border-style: none; } html, body { background-image: url("image/001.jpg"); background-color:rgba(255, 255, 255, 0.8); background-blend-mode:lighten; background-size: cover; background-attachment: fixed; background-position: center center; height: 100%; } body { display: flex; flex-direction: row; justify-content: center; align-items: center; } h1 { font-size: 60px; color: #010101;/*文字色*/ background: linear-gradient(transparent 70%, #ff7480 70%); font-size: 60px; } p { font-size: 14px; } </style> </head> <body> <div class="titlecall"> <h1>タイトル</h1> <p>説明文</p> </div> <div class="game1"> <button type="button" onclick="" name="aaa" value="aaa"> <img src="image/002.png" alt="vs漢字ボタン" width="50" height="50"/> </button> <p>ゲーム1</p> </div> <div class="game2"> <button type="button" name="bbb" value="bbb"> <img src="image/002.png" alt="vs漢字ボタン" width="50" height="50"/> </button> <p>ゲーム2</p> </div> <div class="game3"> <button type="button" name="ccc" value="ccc"> <img src="image/002.png" alt="vs漢字ボタン" width="50" height="50"/> </button> <p>ゲーム3</p> </div> </body> </html> <!-- 各ボタンにリンク貼って飛ばしたい -->
追記
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/12 04:17
2020/03/12 04:24
2020/03/12 04:45