Brackets和w3c验证器表示关闭p标签时出错,我无法弄清楚是什么,请帮忙!
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2 class="text-caramel">The following restaurants are currently serving our spirits:</h2>
<p class="lead" style="padding-top:10px;">
<h3>Bar Del Corso</h3>
<a href="http://www.bardelcorso.com/" target="_blank">http://www.bardelcorso.com/</a>
</p>
答案 0 :(得分:0)
<!-- H3 Tag Not Allow In P Tag
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2 class="text-caramel">The following restaurants are currently serving our spirits:</h2>
<h3>Bar Del Corso</h3>
<p class="lead" style="padding-top:10px;">
<a href="http://www.bardelcorso.com/" target="_blank">http://www.bardelcorso.com/</a>
</p>
</div>
</div>
</div>