<h5>标记的验证错误

时间:2018-03-25 12:14:55

标签: html css html5 css3

当我尝试验证我的页面时,出现以下HTML行上的标记错误:

#footer {
    background-color: #000;
	  color: turquoise;
	  text-align: center;
    height: 60px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
<h5 class id="footer">&copy; BPA Productions 2018</h5>
   

额外的CSS代码是因为我的主页上有两个图像,这就是解决方案,以便“页脚”保持在页面底部和图像下方的中心位置。

因此,如果标签无效,我该怎么做才能验证?

1 个答案:

答案 0 :(得分:2)

您似乎犯了多个错误。

首先,你的class属性是错误的。

<h5 class id="footer">&copy; BPA Productions 2018</h5>

应该成为:

<h5 id="footer">&copy; BPA Productions 2018</h5>

通常情况下,我不会推荐w3schools,但我认为这对你很有帮助:https://www.w3schools.com/Tags/att_global_class.asp

其次,您似乎已将自己的页脚标记放在身体外。

您要在自己的网站上展示的所有内容都应<body></body>

修复这两个错误,你应该没问题。祝你好运!