所以我的 CSS / PHP / HTML 狀況相當混亂。 基本上有些東西適用於一個 php 腳本,但不適用於另一個。
我的程式碼如下(只是其中的一部分):
<?php if ($daten->getData_DB_User($get_page_num) != false) { ?> <div class="seiten_vor_zur"> <br> <td> <div class="seitenanzahl"> <button disabled>Seite : <?php echo $get_page_num ?></button> </div> </td> <td> <a href="<?php echo $_SERVER['PHP_SELF'] . "?q=lesen&seite=" . $get_last_page; ?>" role="button">Vorherige Seite </a> </td> <td> <a href="<?php echo $_SERVER['PHP_SELF'] . "?q=lesen&seite=" . $get_next_page; ?>" role="button">Nächste Seite </a> </td> <?php } else{ echo "Es gibt keine weiteren Einträge.<p> <a href='javascript:window.history.back()'>Zurück</a> </p>"; } ?> </div>
現在我的問題是我正在嘗試設定 div 框 class="seiten_vor_zur" 中最後一個 p 和元素的樣式。 我的頁面不使用 CSS 條目,我想知道為什麼?
這是 CSS 條目:
.seiten_vor_zur{ text-align: center; } .seiten_vor_zur a{ text-decoration: none; border-radius: 50%; text-shadow: 1px 1px 2px #05128f, 0 0 25px #ffffff, 0 0 5px #ffffff; } .seiten_vor_zur a:visited { text-decoration: none; color: #05128f; } .seiten_vor_zur a:hover { background-color: rgba(6, 161, 227, 0.4); }
我沒有看到任何連結到您的 php 檔案的 css 檔案。將您的 css 檔案新增至您的 php 檔案並查看它是否載入
或使用內聯CSS只是為了看看它首先工作。