-4

在这里你会看到duration:50hrs。现在如果你使用firebug调试它,你会<p></p>在50小时后看到额外的标签,而在实际的html中,我在p标签内制作了“duration:50 hrs”

请指出原因。

4

2 回答 2

2

在标签中包含<h2>(或任何其他块级元素)是无效的。<p>考虑改用<div>带边距的标签。

于 2013-02-16T06:21:17.930 回答
0

在检查我看到的元素时

<p>The course offered by us cover complete and thorough knowledge of Search Engine Optimization, which is essential for the success of online business, Knowledge and understanding of the workings of search engines and the SEO skills that the course develops ensures clear understanding of Search Engine Optimization.
This course gives hands-on experience in the area of Search Engine Optimization and internet marketing.</p>
<p><h2 class="reqmnts">Duration:</h2> 50 Hrs</p>
<p><h2 class="reqmnts">Pre-requisite:</h2> Basic Knowledge of computer & internet</p>

这不是您所描述的,因为<p>标签是按顺序放置的

 <p><h2 class="reqmnts">Duration:</h2> 50 Hrs</p>
 <p><h2 class="reqmnts">

如您所见,在第二行<p>的开头有一个,与结尾一致<p>

如果错误如此整洁,那么:)

要修复错误,您需要删除<p>文本周围的标签并简单地添加一个<br>wich 将两行分开

于 2013-02-16T08:18:09.447 回答