HTML4中的节标记未创建对齐列

时间:2018-05-23 23:11:14

标签: css html5 html4

我使用文章和部分标签创建了十年的电影列表。问题是:第二行和第三行完全对齐,而第一行略微偏离。这是我的代码:

<article id="movies">

<section>
<h3>Three Weeks (1924)</h3>
</section>

<section>
<h3>Leatherstocking (1924)</h3>
</section>

<section>
<h3>Wild Horse Mesa (1925)</h3>
</section>  

</article>

看起来如下:

List of films

我把它包裹在div标签中。我查看了代码,一切都检查好了

TIA

1 个答案:

答案 0 :(得分:0)

Run code snippet。并看到结果。根据我的理解,我创建了这个演示。

section { float:left; width:33.33%; background:green }
<article id="movies">

<section>
<h3>Three Weeks (1924)</h3>
</section>

<section>
<h3>Leatherstocking (1924)</h3>
</section>

<section>
<h3>Wild Horse Mesa (1925)</h3>
</section>  

</article>