<link rel =“ stylesheet” type =“ text / css” href =“ css2 / css2.css” />不起作用

时间:2019-05-19 20:57:40

标签: html css

我一直在尝试将html与CSS连接起来。

我检查过:

  • css的样式表路径正确,并且为:css2/css2.css
  • <link rel="stylesheet" type="text/css" href="css2/css2.css" />代码写得不错,我认为是。
  • 我还尝试了几种代码编辑器,以防出现预览问题,我已经尝试过 Atom 方括号,但两者都不显示CSS连接起来。

HTML 代码:

enter image description here

html close标签也写在底部。

CSS

enter image description here

here is where the html and CSS file is placed

2 个答案:

答案 0 :(得分:1)

正如您在声明中提到的,css文件为css/css2.css

所以这意味着您应该通过此代码链接CSS文件。

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

您添加了css2而不是css作为文件夹名称

答案 1 :(得分:0)

此代码将100%工作,只需确保您的HTML文件和CSS2文件夹需要位于同一级别(位于同一文件夹中)即可。

否则,此CSS文件不会链接到您的HTML。