css 和 HTML css 样式不适用于 id
css and HTML css style doesn't apply to id
我刚开始使用 CSS 和 HTML,每次我转到我的 CSS 文件并尝试为一个 id 创建一个样式文件时,它并不适用我不知道是什么问题。并告诉我你是否有任何提示,因为我几天前才开始了解很多。
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: #24252A;
font-family: monospace, sans-serif;
font-weight: 500;
font-size: 16px;
color: #edf0f1;
}
li, a, button {
font-family: monospace, sans-serif;
font-weight: 500;
font-size: 16px;
color: #edf0f1;
text-decoration: none;
}
header {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 30px 10%;
}
.logo {
margin-right: auto;
}
.nav__links {
list-style: none;
}
.nav__links li {
display: inline-block;
padding: 0px 20px;
}
.nav__links li a {
transition: all 0.3s ease 0s;
}
.nav__links li a:hover {
color: #834bef;
}
button {
margin-left: 20px;
padding : 9px 25px ;
background-color: #834bef ;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
button:hover {
background-color: #9a14f3;
}
#title {
font-size: 40px;
padding: 15px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Coin Counter</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<img class="logo" src="64x64.png" alt="image not found /:">
<nav>
<ul class="nav__links" id="nav__links">
<li><a href="about.html">about</a></li>
<li><a href="donate.html">donate</a></li>
<li><a href="index.html">home</a></li>
</ul>
</nav>
<a class="contact" href="#"><button>contact</button></a>
</header>
<hr>
<h1 id="title">Coin Counter</h1>
</body>
</html>
我认为它工作得很好......你有一个应用于你的标签的#title 样式(它的 font-size 是 40px 并且有 15px 填充)。
不要键入 #title {}
选择器,而是将其替换为 h1 {}
选择器。
所以,它看起来像这样:
h1 {
font-size: 40px;
padding: 15px;
}
但无论如何,您的代码运行良好。
!您还必须考虑使用 最佳实践 编写代码。但是初学者没问题
我刚开始使用 CSS 和 HTML,每次我转到我的 CSS 文件并尝试为一个 id 创建一个样式文件时,它并不适用我不知道是什么问题。并告诉我你是否有任何提示,因为我几天前才开始了解很多。
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: #24252A;
font-family: monospace, sans-serif;
font-weight: 500;
font-size: 16px;
color: #edf0f1;
}
li, a, button {
font-family: monospace, sans-serif;
font-weight: 500;
font-size: 16px;
color: #edf0f1;
text-decoration: none;
}
header {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 30px 10%;
}
.logo {
margin-right: auto;
}
.nav__links {
list-style: none;
}
.nav__links li {
display: inline-block;
padding: 0px 20px;
}
.nav__links li a {
transition: all 0.3s ease 0s;
}
.nav__links li a:hover {
color: #834bef;
}
button {
margin-left: 20px;
padding : 9px 25px ;
background-color: #834bef ;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
button:hover {
background-color: #9a14f3;
}
#title {
font-size: 40px;
padding: 15px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Coin Counter</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<img class="logo" src="64x64.png" alt="image not found /:">
<nav>
<ul class="nav__links" id="nav__links">
<li><a href="about.html">about</a></li>
<li><a href="donate.html">donate</a></li>
<li><a href="index.html">home</a></li>
</ul>
</nav>
<a class="contact" href="#"><button>contact</button></a>
</header>
<hr>
<h1 id="title">Coin Counter</h1>
</body>
</html>
我认为它工作得很好......你有一个应用于你的标签的#title 样式(它的 font-size 是 40px 并且有 15px 填充)。
不要键入 #title {}
选择器,而是将其替换为 h1 {}
选择器。
所以,它看起来像这样:
h1 {
font-size: 40px;
padding: 15px;
}
但无论如何,您的代码运行良好。 !您还必须考虑使用 最佳实践 编写代码。但是初学者没问题