gpt4 book ai didi

html - CSS id 不起作用

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

我看不出这有什么问题。我有 2 个 HTML 表和一个 CSS 表。

第一个 HTML 工作表 ( index.html) 是这样的:

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>

<body>

<h1>Olive</h1>
<a href="page1.html">Enter</a>

</body>
</html>

第二个 HTML 表 ( page1.html) 是这样的:

<!DOCTYPE>
<html>

<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>

<body>
<div>
<p id="prenav">Olive</p>
</div>
</body>

</html>

和 CSS 外部表:

body {
background-color: olive;
}

h1 {
font-family: 'Cedarville Cursive', cursive;
font-size: 230px;
text-align: center;
padding: 0px;
}

a {
display: block;
text-align: center;
font-family: 'Cedarville Cursive', cursive;
color: white;
font-size: 100px;
padding: 0px;
text-decoration: none;
}

#prenav {
font-family: 'Cedarville Cursive', cursive;
font-size: 50px;
color: white;
}

问题是 id来自第二个 HTML 工作表 ( page1.html ) 不起作用。我不知道为什么。不知道是语法问题还是什么。

正文属性在 page1.html 中起作用,但是 id属性没有。 <p>元素只出现在任何样式中。有人可以告诉我这有什么问题吗?

最佳答案

调试的一些技巧...当您修改了您的 css 样式(使用 chrome 和 windows:ctrl+shift+r)时,请尝试刷新几次缓存,如果它不起作用,请尝试使用下面的代码并再次刷新缓存:

#prenav {
font-family: 'Cedarville Cursive', cursive !important;
font-size: 50px !important;
color: white !important;
}

!important 规则是一种使您的 CSS 级联的方法,但也始终应用您认为最重要的规则。

代码:

<!DOCTYPE html>
<html>

<head>
<link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<style type="text/css">
body {
background-color: olive;
}

h1 {
font-family: 'Cedarville Cursive', cursive;
font-size: 230px;
text-align: center;
padding: 0px;
}

a {
display: block;
text-align: center;
font-family: 'Cedarville Cursive', cursive;
color: white;
font-size: 100px;
padding: 0px;
text-decoration: none;
}

#prenav {
font-family: 'Cedarville Cursive', cursive;
font-size: 50px;
color: white;
}

</style>
</head>

<body>
<div>
<p id="prenav">Olive</p>
</div>
</body>

</html>

编辑:

解决方案是将 .css 样式表放到正确的文件夹中。干杯。

关于html - CSS id 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15443298/

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