我在http://validator.w3.org尝试验证我的页面时收到警告:
Section lacks heading. Consider using h2-h6 elements to add identifying headings to all sections.
我的代码如下:
<section id="slider-wrapper-new"> <div class="slider-container-new"> // some code.. </div> </section>
解决方法
或者:
>向您的节元素添加标题(h1,…,h6)标记。
>用div元素替换section元素。
>忽略警告。您看到的消息是非规范使用建议,根据HTML5 spec(突出我的):
The theme of each
section
should be identified,typically by
including a heading (h1
–h6
element) as a child of thesection
element.