当我验证以下HTML5代码时出现以下错误:
<article>
<header>
<num>1</num>
<hgroup>
<h2><a href="#">Title with link</a></h2>
<address>Teststreet 11</address>
</hgroup>
</header>
<footer>
<ul>
<li><a href="#">» Mehr</a></li>
</ul>
</footer>
</article>
错误:
答案 0 :(得分:5)
我不知道名为num
hgroup只应包含h1,h2,h3,h4,h5,h6
错误非常自我解释
在此上下文中,元素地址不允许作为元素hgroup的子元素
答案 1 :(得分:0)
我相信你想使用类型为的输入元素:
<form action="demo_form.asp">
Quantity (between 1 and 5): <input type="number" name="quantity" min="1" max="5" />
<input type="submit" />
</form>