cssを変えてもブラウザに反映されなくて困ってます。
今あるCSSは反映されるのですが
css
1.error{ 2 color:red; 3}
と、新しいcssを入れても反映されません。
また、既存のcssを消し、再読み込みしても、そのままです。
html
1<link rel="stylesheet" href="/css/styles.css">
を消すとcssは全てなくなるのですが、、、
どうすればcssが正常に動作しますか?アドバイスお願いします。
html
1!DOCTYPE html> 2<html lang="ja"> 3 <head> 4 <link rel="stylesheet" href="/css/styles.css"> 5 <meta charset="utf-8"> 6 <title>メインページ</title> 7 <h1>掲示板へようこそ</h1> 8 </head> 9 <body> 10 <?php if(isset($error)): ?> 11 <?php foreach($error as $e): ?> 12 <p class="error"><?php echo h($e); ?></p> 13 <?php endforeach; ?> 14 <?php endif; ?> 15 <section> 16 <h2>新規投稿</h2> 17 <!-- 書き込み用フォーム --> 18 <form action="" method="post"> 19 <label for="title">タイトル</label><br> 20 <input type="text" name="title" id="title"><br> 21 <button type="submit">部屋を立てる</button> 22 <input type="hidden" name="token" value="<?php echo h(generate_token()); ?>"> 23 </form> 24 </section> 25 <section> 26 <h2>投稿一覧</h2> 27 <p>現在の投稿は<span><?php echo $count; ?></span>件です</p> 28 <?php if(isset($count)): ?> 29 <?php foreach($rows as $row): ?> 30 <div class="linkbox"> 31 <a href='threads.php?boards_id=<?php echo $row['boards_id']; ?>'> 32 <?php echo h($username); ?> 33 <?php echo h($row['created_at']); ?> <br> 34 <?php echo h($row['title']); ?> 35 </a> 36 </div> 37 <form action="change.php" method="get"> 38 <button type="submit" name="boards_id" value="<?php echo h($row['boards_id']); ?>">編集</button> 39 </form> 40 <form action="delete.php" method="get"> 41 <button type="submit" name="boards_id" value="<?php echo h($row['boards_id']); ?>">削除</button> 42 </form> 43 <?php endforeach; ?> 44 <?php else: ?> 45 <p>投稿はまだありません。</p> 46 <?php endif; ?> 47 </section> 48 </body> 49</html> 50
css
1h1,h2{ 2 text-align:center; 3} 4 5form{ 6 text-align:center; 7} 8 9body{ 10 margin:0; 11} 12 13.error{ 14 color:red; 15} 16 17.linkbox{ 18 display:block; 19 background-color:#ffeecc; 20 width:100%; 21 padding:20px; 22 position:relative; 23} 24 25.linkbox a{ /*a要素をbox全体にする */ 26 position:absolute; 27 top:0; 28 left:0; 29 height:100%; 30 width:100%; 31} 32 33.linkbox:hover{ 34 background:blue; 35} 36
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/01 13:29