**大家好!我正在学习HTML 5,但有一个简单的问题。 应该缩进副标题吗?由于h2是h1的小标题,所以我应该缩进h2吗? 例如:
<h1>My blog</h1>
<h2>Photos</h2>
<h3>My cat</h3>
<h3>My dog</h3>
答案 0 :(得分:0)
这是个人喜好,但不是。它们没有嵌套,因此不应缩进。
答案 1 :(得分:0)
否,只有标签 content 应该缩进,例如
<h1>
My Blog
</h1>
或者:
<h1>
My Blog
<strong>Something else</strong>
</h1>
缩进应显示DOM结构。
这当然是意见。
答案 2 :(得分:0)
最终取决于您,因为浏览器不在乎您如何缩进代码。但是,通常只有嵌套标签时,它们才会缩进。例子
<h1>Hello World!</h1>
<h2>This is an example</h2>
<table>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td>Joe</td>
<td>A cool dude</td>
</tr>
<tr>
<td>Sally</td>
<td>A cool gal</td>
</tr>
</table>