css没有在网站上加载

时间:2017-12-17 05:41:00

标签: html css

我正在尝试在我的网站上运行基本的CSS。这是我的HTML:

<!DOCTYPE html>

<html>
<head>
    <style type="text/css" href="test.css" rel="stylesheet"></style>
</head>
<body>
    <p id="test">
        This is a test document.
    </p>
</body>
</html>

这是我的css:

body {
    background-color: blue;
}

这是文件的布局方式:

 + ask_site
     + index.php
     + test.css

我正在运行XAMPP的最新版本,并且不知道发生了什么。非常感谢你提前:))

1 个答案:

答案 0 :(得分:6)

您需要更改以下行

<style type="text/css" href="test.css" rel="stylesheet"></style>

<link type="text/css" href="test.css" rel="stylesheet" />