我的css在我的github页面上无法正常工作。这是我repo。这是我website。我创建了这个没有Github页面的投资组合网站,它工作正常。我对github很新,所以我很有可能错过了一些东西。我通常将我的所有css / jscript本地化,但为了简单起见,我将所有的css / javascript更改为html链接。
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css\main.css">
</head>
答案 0 :(得分:1)
我的HTML文件和CSS文件有相同的问题。我是这样修复的:
<link rel="stylesheet" href="./style/style.css" type="text/css">
请注意href属性:“ ./ style / style.css”。
安迪。-
答案 1 :(得分:0)
像@TarasYaremkiv提到的那样删除你的'./css/bootstrap-3.3.7/'文件夹。
之所以发生这种情况,是因为Jekyll引擎正在寻找文件'bootstrap-3.3.7 / docs / components.html'中的包含
例如:此文件{%include components / glyphicons.html%}不存在于bootstrap文件夹的components目录中。因此错误。
您可以通过仅下载必要的编译文件或使用cdn links
来避免这类错误答案 2 :(得分:0)
更改
<link rel="stylesheet" type="text/css" href="css\main.css">
到
<link rel="stylesheet" type="text/css" href="/css/main.css">