我从gh-pages分支创建了一个项目页面。但是,即使存储库是最新的,它似乎也没有检测到CSS表中的样式。我希望地图图像以margin-left和right auto为中心。有谁知道为什么会这样?
答案 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知道你正在谈论的文件。
确保您也使用区分大小写的文件名!