使用什么HTML标记来描述图像?

使用什么HTML标记来描述图像?,html,tags,Html,Tags,我的典型图像下面有一个事件名称(短文本)、一个描述文本(长文本)和版权文本(短文本)。我正在寻找最好的标签用例。不要担心与老浏览器的兼容性。图像将在一个数字标签中,所以我们在这里讨论figcaption中的内容 例如: ------------------------- - imagine an image here - ------------------------- Marathon 2013 Some great Marathon 2013 photo of a great runner

我的典型图像下面有一个事件名称(短文本)、一个描述文本(长文本)和版权文本(短文本)。我正在寻找最好的标签用例。不要担心与老浏览器的兼容性。图像将在一个数字标签中,所以我们在这里讨论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 for event(Marathon 2013)和版权(somesite.com提供)。我想用span来描述


你有什么建议吗?

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

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


        <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>
2013年马拉松比赛中一位伟大跑步者的照片。 这可以继续下去,继续下去,继续下去。。。而且大部分时间会跨越多条线路。 由somesite.com提供
在figcaption中,您可以使用所有需要的标记,如

你们可以用figure来制作这样的多幅图像

        <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年马拉松比赛中一位伟大跑步者的照片。
这可以继续下去,继续下去,继续下去。。。而且大部分时间会跨越多条线路。
由somesite.com提供

2013年马拉松比赛中一位伟大跑步者的照片。
这可以继续下去,继续下去,继续下去。。。而且大部分时间会跨越多条线路。
由somesite.com提供
在figcaption中,您可以使用所有需要的标记,如

你们可以用figure来制作这样的多幅图像

        <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年马拉松比赛中一位伟大跑步者的照片。
这可以继续下去,继续下去,继续下去。。。而且大部分时间会跨越多条线路。
由somesite.com提供

版权的小标签?你能解释一下为什么它能战胜cite吗?版权的小标签?你能解释一下为什么它能战胜cite吗?谢谢你的例子+1。也许可以在figcaption的内部引用“这可以继续下去”部分问题是关于figcaption中的三个组件应该使用什么标签。感谢示例+1。也许可以在figcaption的内部引用“这可以继续下去”部分。问题是figcaption中的三个组件应该使用什么标签。