Currently, I am organizing a list of movies by decade using the article and section elements. An issue has arisen: the alignment between the second and third rows is perfect while the first row seems slightly off-kilter. Below is the code snippet in question:
<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>
The layout appears as follows:
I have enclosed it within a div tag. Upon reviewing the code, everything seems to be in order.
TIA