実現したいこと
確認画面で送信と戻るボタンのサイズを同じにしたい/paddingを変更したい
前提
送信と戻るボタンを横並びにしたいのと、氏名、フリガナ、電話番号、メールアドレス、お問合せ内容の幅を変えたいのですがここ一週間ずっとうまくいきませんT T
該当のソースコード
<!-- form --> <div class="contact"> <h1>お問い合わせ</h1> <form action="complete.php" method="POST"> <p>下記の内容をご確認の上送信ボタンを押してください<br> 内容を訂正する場合は戻るを押してください。 </p> <div class="confirm"> <p>氏名</p> <?php echo htmlspecialchars($_SESSION["name"]); ?> <p>フリガナ</p> <?php echo htmlspecialchars($_SESSION["huri"]); ?> <p>電話番号</p> <p> <?php echo htmlspecialchars($_SESSION["suuzi"]); ?> </p> <p>メールアドレス</p> <p class="word-rap"> <?php echo htmlspecialchars($_SESSION["mail"]); ?> </p> <p>お問い合わせ内容</p> <p class="word-rap"> <?php echo nl2br(htmlspecialchars($_SESSION["box"])); ?> </p> <div class="button-group"> <button type="submit" class="gos">送信</button> <input type="button" onclick="history.back()" value="戻る"> </div> </div> </form> </div>
.contact { border: 1px solid black; width: 70%; /* height: 100%; */ margin: 10% auto; border-radius: 16px; } .contact form { width: 100%; margin: 5%; } .contact p { width: 90%; } .contact h1 { font-size: 25px; font-weight: bold; text-align: center; padding: 1rem 0; border-bottom: 1px solid #ccc; } .contact h3 { width: 90%; font-weight: normal; border-top: 1px solid #181818; border-bottom: 1px solid #181818; padding-top: 5px; padding-bottom: 5px; background-color: #dbdbdb; } .contact .nr { border-top: 1px solid #181818; border-bottom: 1px solid #181818; padding-top: 5px; padding-bottom: 5px; background-color: #dbdbdb; } .contact form input { width: 90%; padding-top: 15px; padding-bottom: 15px; border-radius: 8px; border: 1px solid #969696; } .contact textarea { width: 90%; padding-top: 15px; padding-bottom: 15px; border-radius: 8px; border: 1px solid #969696; } .contact span { color: red; } .contact button { width: 91%; padding-top: 15px; padding-bottom: 15px; border-radius: 8px; border: 1px solid #969696; background-color: rgb(226, 34, 66); color: white; font-size: 20px; } /* ---------------------------------------- */ .confirm form { width: 100%; margin: 5%; } .confirm p { border-bottom: 1px solid #969696; width: 90%; } .con_btn { display: flex; justify-content: space-between; width: 90%; padding-top: 5px; padding-bottom: 5px; } .con_btn .modoru { width: 90%; text-align: center; line-height: 60px; margin-left: 10px; background-color: white; border: 2px solid #066; border-radius: 8px; cursor: pointer; color: #066; text-decoration: none; }
試したこと
送信と戻るを横並びにする
・<div class="button-group">
css側に
.button-group{
display:flex;}を書き加えた
・開発者ツールで変更した時に理想通りのレイアウトが完成したのでソースコードをコピーして貼り付けたが反映されない
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2023/05/26 04:03
2023/05/26 04:06 編集
退会済みユーザー
2023/05/26 04:36