如何为 SVG 文档指定标题,其工作方式与 HTML 文档 <title> 中的 <head> 元素相同? 元素声明整个文档的人类可读名称,然后该名称显示在浏览器中(当将鼠标悬停在浏览器选项卡等上时)并且是 </desc> <question vote="2"> <p>在 HTML 文档 <pre><code><head></code></pre> 中,<pre><code><title></code></pre> 元素声明整个文档的人类可读名称,然后该名称显示在浏览器中(当鼠标悬停在浏览器选项卡等上时)并被用户代理理解。</p> <p>同样,我如何为 SVG 文档赋予顶级标题,使其实现与 HTML <pre><code><title></code></pre>相同的元数据功能,并由浏览器显示并由用户代理理解?</p> </question> <answer tick="true" vote="2"> <p>我找不到任何网络文章/教程来验证这一点,但是,据我所知,向 <strong>SVG 文档</strong>添加 <strong>meta-title</strong> 是完全简单的。</p> <p>在打开的 <pre><code><svg></code></pre> 元素正下方添加一个 SVG <pre><code><title></code></pre> 元素。</p> <p>就是这样。</p> <p><pre><code><title></code></pre> 在 SVG 中的使用比在 HTML 中要多得多,但未嵌套的 <pre><code><title></code></pre> 作为放置在 SVG 文档开头的第一个元素将充当整个 SVG 文档的 <strong>meta-title</strong>。 </p> <p><strong>示例:</strong></p> <pre><code><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1200 1200"> <title>My SVG Document Title Here</title> <!-- ^^^ SVG Title goes here at the start of the SVG --> <defs> [... SVG DOCUMENT CONTINUES...] </code></pre> </answer> </body></html>

问题描述 投票:0回答:0
svg
© www.soinside.com 2019 - 2024. All rights reserved.