Firefox ... SVG ...强调......为了基督的缘故怎么样?

Raf*_*ael 5 firefox svg

到目前为止,我尝试过的任何东西都失败了,以使Firefox强调一些文字.

根据谷歌的结果,这个问题已知并记录了五年多......这不可能是真的......发生了什么?

有人知道任何有意义的工作解决方法,或者甚至是他们为什么还没有解决它的原因!?......我对此非常好奇

Mar*_*ngs 2

我的Firefox 中,ForeignObject如果我将 SVG 中的文本包含在正确的标签中,它就会完美地带有下划线:

<html:u>blub</html:u>

...将 html 声明为 svg 中的命名空间后,示例代码如下所示:

<div style="border:solid black 2px;">
<svg:svg xmlns="http://www.w3.org/2000/svg"
  xmlns:html="http://www.w3.org/1999/xhtml"
  width="300" height="50" > 
 <foreignObject width="80" height="50">
   <html:u>blub</html:u>
 </foreignObject>
</svg:svg>
</div>
Run Code Online (Sandbox Code Playgroud)

这对你来说是一个解决方案吗?