0

我正在使用 appserver,我想链接 style.css

.header {
    height: "40px";
    background-color: "red"
}

在我的 index.php

<html>
    <head>
        <META HTTP-EQUIV="Content-language" CONTENT="ar">
        <link rel="shortcut icon" href="img/favicon.ico"/>
        <link rel="stylesheet" type="text/css" href="CSS/style.css"/>
        <title>بام للسيارات | تبضع اينما كنت</title>        
    </head>
    <body>
        <div class="header">

        </div>
    </body>
</html>

但它没有用我不知道为什么有人可以帮助我

在此处输入图像描述

4

2 回答 2

4
于 2013-06-29T00:46:38.987 回答
0

Use this

<html>
    <head>
        <META HTTP-EQUIV="Content-language" CONTENT="ar">
        <link rel="shortcut icon" href="img/favicon.ico"/>
        <link rel="stylesheet" type="text/css" href="CSS/style.css"/>
        <title>بام للسيارات | تبضع اينما كنت</title>        
    </head>
    <body>
        <div class="header">

        </div>
    </body>
</html>

I have packed your code ger it from here

于 2013-06-29T02:44:35.467 回答