2

我的典型图像将在其下方有一个事件名称(短文本)、一个描述文本(长文本)和版权文本(短文本)。我正在寻找最好的标签用例。不要担心与旧版浏览器的兼容性。图像将位于图形标签中,因此我们在这里讨论的是 figcaption 中的内容。

例子:

-------------------------
- imagine an image here -
-------------------------
Marathon 2013
Some great Marathon 2013 photo of a great runner. This could go on, and on, and on... 
and will span multiple lines most of the time. 
Courtesy of somesite.com

我目前正在使用 cite 事件(Marathon 2013)和版权(由 somesite.com 提供)。我正在考虑描述的跨度。

你有什么建议?

4

2 回答 2

3
        <figure>
          <img src="image.jpg" alt="image text">
          <figcaption>Some great Marathon 2013 photo of a great runner.
            This could go on, and on, and on... and will span multiple lines most of the time. 
            Courtesy of somesite.com</figcaption>
        </figure>

在 figcaption 你可以使用所有你想要的标签<a> or <span>

并且您可以将图形用于这样的多张图片

        <figure>
          <img src="image.jpg" alt="image text">
          <img src="image2.jpg" alt="image text">
          <img src="image3.jpg" alt="image text">
          <figcaption>Some great Marathon 2013 photo of a great runner.
            This could go on, and on, and on... and will span multiple lines most of the time. 
            Courtesy of somesite.com</figcaption>
        </figure>
于 2013-05-20T05:25:16.383 回答
1

是的。图为图像。包含 span / cite 的 Figcaption 听起来不错。

于 2013-05-20T03:56:44.507 回答