使用W3C验证程序时,我收到此错误。我还注意到我的页脚内容在IE8中消失了,我想知道是否可以解决该问题。

<aside class="footer-sidebar-widget four columns">
<h4>Call Us Today</h4>
<div class="textwidget">
        <h4 style="color:#fff;">773-376-ROLL (7655)</h4>
            </div>
</aside>


            <aside class="footer-sidebar-widget four columns">
            <div class="textwidget">
                <div id="right-footer-wrap">
                    <div id="right-footer-content">
                        <div itemscope itemtype="http://schema.org/LocalBusiness">

                    <span itemprop="name"><strong>Rolling Reefers</strong></span>
                    <br />
                    <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
                     <span itemprop="streetAddress">3535 S Kostner Ave., Suite 101</span>
                    <br />
                    <span itemprop="addressLocality">Chicago</span>, <span itemprop="addressRegion">IL</span> <span itemprop="postalCode">60632</span>
                    <br />
                    <span itemprop="telephone">(773) 376-7655</span>

                        </div>
                    </div>
                </div>
            </div>
        </aside>

网站:Rolling Reefers

最佳答案

第二面有一个开放的<div>。在最后一个</div>之前添加另一个</aside>应该可以解决该问题。

关于html - 验证错误: End tag aside seen,,但是有未完成的元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18775274/

10-13 00:47