<desc>

<desc> 元素为任何 SVG 容器元素图形元素 提供可访问的、长文本描述。

<desc> 元素中的隐藏文本不会作为图形的一部分呈现。如果元素可以通过可见文本描述,则可以使用 aria-describedby 属性引用该文本。如果使用 aria-describedby,它将优先于 <desc>

<desc> 元素的隐藏文本也可以使用 aria-describedby 值中的多个 ID 与其他元素的可见文本连接起来。在这种情况下,<desc> 元素必须提供一个 ID 用于引用。

示例

html
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
  <circle cx="5" cy="5" r="4">
    <desc>
      I'm a circle and that description is here to demonstrate how I can be
      described, but is it really necessary to describe a simple circle like me?
    </desc>
  </circle>
</svg>

属性

此元素仅包含全局属性

使用上下文

类别描述性元素
允许内容任何元素或字符数据

规范

规范
可缩放矢量图形 (SVG) 2
# DescriptionAndTitleElements

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参见