gpt4 book ai didi

html - SVG <title> 中的多行 (Internet Explorer) |换行符、表格

转载 作者:行者123 更新时间:2023-12-05 02:09:57 28 4
gpt4 key购买 nike

我想使用 <title> 将多行工具提示添加到我的 SVG 路径中标签。

它在 Chrome 中完美运行,但我尝试过的换行符导致在 Internet Explorer 中出现空格。

同样在 Internet Explorer 中,多行在 title="" 中工作属性。

下面的代码片段在 svg 和按钮上有相同的多行提示。在 IE 中运行。

<svg height="100" width="100">
<path d="M45 0 L15 80 L75 80 Z">
<title>test&#xA;test</title>
<!--<title>test&#xA;test</title>-->
<!--<title>test&#10;test</title>-->
<!--<title>test&#13;test</title>-->
</path>
</svg>
<div><button title="test&#xA;test">It works here</button><div>

最佳答案

在IE浏览器中,使用<br>用于在 SVG 元素中添加换行符的标记;在 Microsoft Edge 和 Chrome 浏览器中使用 &#xA;添加换行符。

代码如下:

<svg height="100" width="100">
<path d="M45 0 L15 80 L75 80 Z">
<title>test&#xA;<br>test</title>
<!--<title>test&#xA;test</title>-->
<!--<title>test&#10;test</title>-->
<!--<title>test&#13;test</title>-->
</path>
</svg>
<div><button title="test&#xA;test">It works here</button></div>

输出如下:

IE浏览器:

enter image description here

Chrome 浏览器:

enter image description here

关于html - SVG &lt;title&gt; 中的多行 (Internet Explorer) |换行符、表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59325310/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com