gpt4 book ai didi

html - Css链接搞砸了

转载 作者:太空宇宙 更新时间:2023-11-04 15:10:03 24 4
gpt4 key购买 nike

我刚刚开始使用 CSS,在为链接添加颜色时遇到了一些问题。当我添加链接颜色时,它不起作用,所以我尝试自己修复它,但只会把我的网站搞得更糟。这是我的代码。

<html>
<head>
<title> website </title>
</head>
<style type="text/css">
body
{
background-color:#474747;
color:#e1e1e1;
font-family:"Courier New";
text-align:center;
{
a:link
{
color:#00FFFF;} /* unvisited link */
a:visited
{
color:#4DFF4D;} /* visited link */
a:hover
{
color:#00FFFF;} /* mouse over link */
a:active
{
color:#00FFFF;} /* selected link */
}
h1
{
font-size:40;
}
h3
{
font-size:20;
text-decoration:underline;
}
p
{
font-size:12;
}
</style>
<body>
<h1> heading </h1>
<hr size="3" color="red" />
<h3>Welcome!!!</h3>
<p>Welcome to my website!</p>
<h3>Links</h3>
<p><a href="http://www.youtube">Youtube</a></p>
</body>
</html>

Html 代码或 Css 代码中有什么问题吗?请帮助。

最佳答案

从正确闭合牙套开始,让我们知道进展如何

body 
{
background-color:#474747;
color:#e1e1e1;
font-family:"Courier New";
text-align:center;
{

应该是

body 
{
background-color:#474747;
color:#e1e1e1;
font-family:"Courier New";
text-align:center;
}

关于html - Css链接搞砸了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15421597/

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