4

我不太确定为什么会出现这个问题,或者它是否真的是一个问题。有任何想法吗? 第 33 行,第 10 列:在此上下文中,元素侧边栏不允许作为元素主体的子项。

<body>
<header>
    <a id="logo" href="#"><img src="img/logo.png"></a>
    <nav>
        <ul>
            <li><a href="#">BLOG</a></li>
            <li><a href="#">WORK</a></li>
            <li><a href="#">ABOUT</a></li>
            <li><a href="#">CONTACT</a></li> 
        </ul>
    </nav>
</header>

<div id="container">
    <div id="headline">
        <h1>Headline</h1>
    </div><!-- end headline -->
    <div id="postinfo">
        <p>by me<br />15 April 2012</p>
    </div><!-- end postinfo -->
    <div id="postentry">
        One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a horrible vermin. He lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections. The bedding was hardly able to cover it and seemed ready to slide off any moment. His many legs, pitifully thin compared with the size of the rest of him, waved about helplessly as he looked. "What's happened to me? " he thought. It wasn't a dream.
    </div><!-- end postentry -->
</div><!-- end container -->

<sidebar>
4

1 回答 1

4

HTML5 中没有元素<sidebar>——它在几年前的早期草案中被删除了。考虑<aside>改用。

于 2012-04-18T00:08:03.163 回答