gpt4 book ai didi

css - 内部 CSS 不起作用

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

我的内部 CSS 无法使用我的少量代码。这似乎是一个非常愚蠢的问题,但我所做的一切都无济于事。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<title>Ask Help</title>
<style type = "text/css">
@font-face {
font-family: "junction";
src: url("Junction_02.otf");
}

html {
background-image: linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -o-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -webkit-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -ms-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.02, rgb(75,135,163)), color-stop(0.54, rgb(127,219,219))
}

.menu {
list-style-type: none;
font-size: 25px;
}

h1 {
font-family: junction;
text-size: 60px;
}
</style>
</head>
<body>
<nav>
<ul class="menu">
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="about.html" title="About Us">About</a></li>
<li><a href="past.html" title="iPod">Past Q&amp;A's</a></li>
</ul>
</nav>
</body>
</html>

最佳答案

此行缺少右括号 ),这会影响您的标记:

background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.02,   rgb(75,135,163)), color-stop(0.54, rgb(127,219,219))

改成这样:

background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.02,   rgb(75,135,163)), color-stop(0.54, rgb(127,219,219)));

您应该考虑使用 W3C 的 HTML CSS 用于捕获此类问题的验证工具。 HTML 验证器不能很好地捕获不良 CSS,因此您可以将嵌入式 CSS 复制并粘贴到 CSS 验证器中。

哦,还不如在最后一个 background-image 语句的末尾放一个分号(我为你做的),因为如果你在未来添加更多行但忘记添加,它会避免你的悲伤上一行的分号。

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

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