我有以下代碼不採摘的style.css在瀏覽器
頭
<!DOCTYPE html>
<html>
<head>
<title> <?php print $title ?></title>
<link rel="stylesheet" type="text/css" href="/css/style.css"/>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
</head>
<body>
在指數
<?php $ha ="active"; $title ="League of Draven" ?>
<?php require_once 'inc/head.php';?>
<?php require_once 'inc/menu.php';?>
<?php require_once 'inc/footer.php';?>
我的CSS文件名的style.css在css文件夾中。問題是當我把localhost/Myshop放在瀏覽器中時,它沒有選擇css文件。
使用'./'或'../'或不用'/'任何你應該嘗試找到正確的路徑。 'print $ title'需要關閉標籤我認爲';' – Chay22
真棒它在cd/css之前移除後才起作用。感謝:) – Ayaz