【发布时间】:2020-08-08 18:06:35
【问题描述】:
我认为 'WEB' 必须是 PINK 因为 h1 选择器 在 a 选择器.. 为什么是黑色的??
<!doctype html>
<html>
<head>
<title>WEB - CSS</title>
<meta charset="utf-8">
<style>
a {
color:black;
text-decoration: none;
}
h1 {
color:pink;
font-size:45px;
text-align: center;
}
</style>
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
</body>
</html>
【问题讨论】:
-
因为'a'更具体
标签: css colors css-selectors