繁体   English   中英

我想链接 html 和 css 文件。 但不起作用

[英]i wanted to link the html and css files. but does not work

<html>

<head>

<title> HELLO </title>

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

</head>

<body>

<h1> WELCOME TO THE NEW WORLD </h1>

<p>  This is the world of Oppurtunities </p>

</body>

</html>

css文件在下面。

body{
    background-color: darkslategrey;
    color: azure;
     }

h1{
    color: coral;
     }

你的问题很模糊,但你的 CSS 路径可能已经关闭。

如果没有关于您的开发环境的更多信息,这是我最好的建议。

将您的 CSS 链接更改为...

<link rel="stylesheet" type="text/css" href="../back.css"/>注意 ./back.css

这可能不是文件的正确路径,但您的问题在于您的相对路径 这完全取决于您的文件结构。

基本示例

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

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

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

也许将 css 文件放入文件夹可能会奏效。

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

这通常可以解决问题,让我们知道;)!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM