gpt4 book ai didi

html - 我的 CSS 不会显示在我的索引页面之后

转载 作者:太空宇宙 更新时间:2023-11-04 02:09:21 25 4
gpt4 key购买 nike

我正在为我的学校编程类(class)创建一个网站,我的 css 不会显示在我的主页之后,我创建 css 的模式没有改变,到目前为止,我类有 5 个人已经检查过,但没有人知道原因

首页

<head>
<link rel= "stylesheet" href="css1.css">
<meta charset = "utf-8">
<meta name= "keywords" content= "photo">
<title> "trash" </title>
</head>

<body bgcolor="#F5F6E9">


<div class="header">

<div class="container">
<div class="logo">
<h1><a href="index.html">LEGALIZE RANCH</h1>
</div>

<div class= "nav">
<ul>

<li><a href="index.html">RANCH!</a></li>

<li><a href="why.html">WHY?????</a></li>

<li><a href="brotendonation.html">BROTENDO NATION</a></li>

</ul>
</div>
</div>
</div>

<div class= "mainpart">
<div class="statement">
<p>
WHATS UP BROTENDOS
</p>
</div>

<div class= "god">
<center> <img src= "god.png" alt="ranch dude"> </center>
</div>

<div class= "statement2">
<p>
RANCH IS THE #1 MOST RARE RESOURCE EVER!!!! THAT MEANS OUR GOVERNMENT IS LIMITING IT FOR DUDES LIKE THIS!!!!!
</p>
<p>
THIS NEEDS TO BE ADDRESSED AT THE NINTENDO CONVENTION!!!!!
</p>
</div>
<div class= birdup>
<center><img src= "birdup.jpg" alt= "bir ddup"></center>
</div>
</body>

CSS

body {
width: 100%;
margin : auto;
}

.container {
width: 960px:
margin: 0 auto:
}

.header {
background: #94DD6E;
height: 100px;
width: 100%;
top: 0;
position: fixed;
}

.logo {
float: left;
font-family: "Helvetica";
font-size: 15px;
margin-left:15px;
padding-top:10px;
}

a {
text-decoration: none;
color: #fff
}

li {
list-style: none;
float: left;
margin-left: 15px;
padding-top: 15px;
font-family: Arial, Helvetica, sans-serif;
margin-right: 15px;
}

.nav {
float: right;
padding-top: 10px;
}

.content {
background: #e7e8e1;
}

.statement {
padding-top: 100px;
text-align: center;
font-family: "Helvetica";
font-size: 25px;
}

.statement2 {
text-align: center;

.god {
text-align: center;
}

.pimplepete {
margin-top: 50%;
text-align: center;
color: orange;
}

.mainpart {
background-color: #F5F6E9;
}

.video {
padding-top: 25px;
}

.donation {
text-align: center;
font-family: "Papyrus";
font-size: 50px;
}

CSS 无法正常工作的页面

<!doctype html>

<head>
<link rel= "stylesheet" href="css1.css">
<meta charset = "utf-8">
<meta name= "keywords" content= "photo">
<title> "trash" </title>
</head>

<body bgcolor="#F5F6E9">


<div class="header">

<div class="container">
<div class="logo">
<h1><a href="index.html">LEGALIZE RANCH</h1>
</div>

<div class= "nav">
<ul>

<li><a href="index.html">RANCH!</a></li>

<li><a href="why.html">WHY?????</a></li>

<li><a href="brotendonation.html">BROTENDO NATION</a></li>

</ul>
</div>
</div>
</div>

<div class= "video">
<center>
<iframe width="640" height="360" src="https://www.youtube.com/embed/0V7FGCtnoJo" frameborder="0" allowfullscreen></iframe>
</center>
</div>

<div class= "donation">
<p>
OUR MOVEMENT IS GROWING!!! SPORT SOME <i>RANCHY</i> MERCH
</p>
<p>
<a href= "http://legalizeranch.com/"> LEGAL RANCH MERCH </a>
</p>
</div>





</body>

别担心,我知道格式不好。

最佳答案

您的 CSS 是相对链接的。

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

如果您的其他页面可能在不同的文件夹中 - 没有 css1.css 的文件夹在html旁边它们里面的文件,它不会理解对 css1.css 的引用.

尝试添加前导斜杠 /css1.css如果您通过 URL 而不是文件系统访问站点,并且 css位于网络根目录中。

如果您通过文件系统加载页面,请根据调用它的文件调整对 css 的引用。您可以通过将其称为 ../css1.css 来向上遍历一个级别。 , 而不是。

为了进一步说明,给定一个文件系统,如:

public_html/
- index.html
- css1.css
- about/
- index.html

public_html/index.html 知道 css1.css因为它们位于同一目录中。

然而,在public_html/about/index.html , 如果 <link>标签引用 css1.css , 浏览器将查找名为 public_html/about/css1.css 的文件,我想这不存在。

关于html - 我的 CSS 不会显示在我的索引页面之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40093056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com