我想在 div id="primary" 的内容中添加一段 class="box",不包括 h1。我的html如下。
<div id="primary">
<h1 class="page-title">Search Results for: dffd</h1>
<h2>Nothing Found</h2>
<p>Sorry, but nothing matched your search criteria. Please try again with some different keywords.</p>
</div> <!--end #primary -->
所以我想要实现的是
<div id="primary">
<h1 class="page-title">Search Results for: dffd</h1>
<section class="box">
<h2>Nothing Found</h2>
<p>Sorry, but nothing matched your search criteria. Please try again with some different keywords.</p>
</section>
</div> <!--end #primary -->
编辑:犯了一个错误,我不希望我的 h1 在该部分中,已修改问题