我想问一下使用'ul'的正确方法是什么?可以使用“ul”列出一些图像横幅吗?前任。我有 3 个带有标题的图像横幅,并且都向左浮动。我以前每次都会遇到这种情况,我想出的方法是第一个使用'ul'的标记。
是否可以使用以下标记:
<section class="banners">
<ul>
<li>
<figure>
<a href="#">
<img src="" width="" height="" alt="" />
</a>
</figure>
<a href="#">title here</a>
</li>
<li>
<figure>
<a href="#">
<img src="" width="" height="" alt="" />
</a>
</figure>
<a href="#">title here</a>
</li>
<li>
<figure>
<a href="#">
<img src="" width="" height="" alt="" />
</a>
</figure>
<a href="#">title here</a>
</li>
</ul>
</section>
或者我应该使用:
<section class="banners">
<figure>
<a href="#">
<img src="" width="" height="" alt="" />
</a>
<figcaption>
<a href="#">title here</a>
</figcaption>
</figure>
<figure>
<a href="#">
<img src="" width="" height="" alt="" />
</a>
<figcaption>
<a href="#">title here</a>
</figcaption>
</figure>
<figure>
<a href="#">
<img src="" width="" height="" alt="" />
</a>
<figcaption>
<a href="#">title here</a>
</figcaption>
</figure>
</section>
它们都代表语义编码吗?
这是图像横幅的示例