ボタンホバーのcssがthreads.phpのclass="button"の削除、変更ボタンにしか効かなくて困っています。
boards.phpの削除、変更ボタンには効かないです。
他のボタンにもホバーのcssを効かせたいです。
htmlは同じだからなぜ他にかからないのかがわかりません。
アドバイスもらえると嬉しいです。
html
1//boards.php 2<!DOCTYPE html> 3<html lang="ja"> 4 <head> 5 <link rel="stylesheet" href="/css/styles.css"> 6 <meta charset="utf-8"> 7 <title>メインページ</title> 8 <h1>掲示板へようこそ</h1> 9 <h2>新規投稿</h2> 10 </head> 11 <body> 12 <section> 13 <form action="" method="post"> 14 <label for="title">タイトル</label><br> 15 <input type="text" name="title" id="title"><br> 16 <button type="submit">部屋を立てる</button> 17 <input type="hidden" name="token" value="29a27366d051dfe26cea26b9a13342519343257dd8fd7e5d3dfd9f3c4a489c28"> 18 </form> 19 <h2>投稿一覧</h2> 20 <p>現在の投稿は71件です</p> 21 <div class="flexbox"> 22 <div class="posts"> 23 <a href='threads.php?boards_id=143'> 24 ゆうき 2020-03-04 10:21:14 <br> 25 質問 </a> 26 </div> 27 <div class="button"> 28 <form action="change.php" method="get"> 29 <button type="submit" name="boards_id" value="143">編集</button> 30 </form> 31 <form action="delete.php" method="get"> 32 <button type="submit" name="boards_id" value="143">削除</button> 33 </form> 34 </div> 35 </div> 36 </section> 37 </body> 38</html> 39 40//threads.php 41<html lang="ja"> 42 <head> 43 <link rel="stylesheet" href="/css/styles.css"> 44 <meta charset="utf-8"> 45 <title>メインページ</title> 46 <h1>掲示板へようこそ</h1> 47 <h2>新規投稿</h2> 48 </head> 49 <body> 50 <section> 51 <form action="" method="post"> 52 <textarea name="comment" rows="8" cols="80"></textarea><br> 53 <input type="hidden" name="token" value="d93215f0ef7108f6b68de279972f55b20147700817314e6df1d5343448f280c0"> 54 <button type="submit">送信</button> 55 </form> 56 </section> 57 <section> 58 <h2>投稿一覧</h2> 59 <p>現在の投稿は1件</p> 60 <div class="flexbox"> 61 <div class="posts"> 62 <p> 63 ゆうき 2020-03-04 10:49:35<br> 64 aaaaaaaa </p> 65 </div> 66 <div class="button"> 67 <form action="change.php" method="get"> 68 <button type="submit" name="threads_id" value="38">編集</button> 69 <input type="hidden" name="board_id" value="143"> 70 </form> 71 <form action="delete.php" method="get"> 72 <button type="submit" name="threads_id" value="38">削除</button> 73 </form> 74 </div> 75 </div> 76 </section> 77 </body> 78</html> 79
css
1h1,h2,form{ 2 text-align:center; 3} 4 5body,form{ 6 margin:0; 7} 8 9a{ 10 color:blue; 11} 12 13.error{ 14 text-align:center; 15 color:red; 16} 17 18button{ 19 display: inline-block; 20 padding: 0.3em 1em; 21 text-decoration: none; 22 color: #67c5ff; 23 border: solid 1px #67c5ff; 24 border-radius: 3px; 25 transition: .4s; 26 outline:none; 27} 28 29.button{ 30 display:block; 31} 32 33.button :hover{ 34 background: #67c5ff; 35 color: white; 36} 37 38.flexbox{ 39 display:flex; 40} 41 42.posts{ 43 background-color:#ffeecc; 44 width:100%; 45} 46 47.posts:hover{ 48 background:#ffee; 49} 50 51.posts a{ 52 display:flex; 53 height:100%; 54 justify-content:center; 55 align-items:center; 56} 57 58.posts p{ 59 display:flex; 60 height:100%; 61 justify-content:center; 62 align-items:center; 63 margin-top: 0; 64}
html
1//threads.php 2<div class="flexbox"> 3 <div class="posts"> 4 <p> 5 aaa 2020-03-04 09:59:27<br> 6 あああ 7 </p> 8 </div> 9 <div class="button"> 10 <form action="change.php" method="get"> 11 <button type="submit" name="threads_id" value="35">編集</button> 12 <input type="hidden" name="board_id" value="140"> 13 </form> 14 <form action="delete.php" method="get"> 15 <button type="submit" name="threads_id" value="35">削除</button> 16 </form> 17 </div> 18</div> 19 20//boards.php 21<div class="flexbox"> 22 <div class="posts"> 23 <a href='threads.php?boards_id=140'> 24 aaa 2020-03-03 18:36:55 <br> 25 質問 26 </a> 27 </div> 28 <div class="button"> 29 <form action="change.php" method="get"> 30 <button type="submit" name="boards_id" value="140">編集</button> 31 </form> 32 <form action="delete.php" method="get"> 33 <button type="submit" name="boards_id" value="140">削除</button> 34 </form> 35 </div> 36</div>
エラーは出ていませんか?デベロッパーツールで確認してみてください。https://eng-entrance.com/javascript-display-error
確認しましたが、エラーは出ていませんでした
回答2件
あなたの回答
tips
プレビュー