Github Project页面没有检测到CSS更改

时间:2017-07-13 21:50:31

标签: html css github

我从gh-pages分支创建了一个项目页面。但是,即使存储库是最新的,它似乎也没有检测到CSS表中的样式。我希望地图图像以margin-left和right auto为中心。有谁知道为什么会这样?

项目页面位于https://nattyrye.github.io/ames/

我的存储库 - https://github.com/nattyrye/ames/tree/gh-pages

2 个答案:

答案 0 :(得分:0)

变化:

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

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

文件style.css有一个小写的&#39;

答案 1 :(得分:0)

我猜它没有检测到你的相关链接:

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

尝试将其更改为

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

所以github知道你正在谈论的文件。

确保您也使用区分大小写的文件名!