CSS文件未加载[已关闭]

vcirk6k6  于 2022-12-15  发布在  其他
关注(0)|答案(3)|浏览(130)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
目前,我正在HRMS系统上制作一个项目,我已经构建了一个名为profile的HTML页面(正在使用教程帮助),但其CSS文件未加载
我期望个人资料页面正常工作,但它没有工作。

bvhaajcl

bvhaajcl1#

你可以使用带有rel='stylesheet'属性和href属性的link标签来添加css ex的外部文件:链接rel ='样式表' href ='ma

rks48beu

rks48beu2#

你仔细检查过你的css格式了吗?

<html>

<head>
<style>    
body{padding:50px;margin-top:0px;background:#fff;}
</style> 
</head>

<body>

或者

<html>

<head>
<link rel="stylesheet" href="styles.css"> 
</head>

<body>

或者:css文件是否存在?如果您有,它是否在同一目录中

<link rel="stylesheet" href="styles.css">

而不是在其他文件夹中,例如:

<link rel="stylesheet" href="folder/styles.css">

或者是

<link rel="stylesheet" href="/folder/styles.css">

(Don(不记得哪一个是正确的格式)

muk1a3rh

muk1a3rh3#

试着在正文部分之前添加链接标签。(如下所示)。同时确保你的css文件和html文件在同一个文件夹中。

<link rel=stylesheet href='YourCssFileName.css'>

相关问题