如何使用javascript在svg文本元素上设置glyph-orientation-horizo​​ntal属性?

时间:2014-07-14 01:25:37

标签: javascript html css text svg

如何使用javascript在svg文本元素上设置glyph-orientation-horizo​​ntal属性?

我试过了

svg.setAttribute("style","glyph-orientation-horizontal:90"); 并尝试过 svg.style.glyph-orientation-horizontal=90;

第一个清除所有样式值,以便style=''第二个引发javascript错误

svg定义为 var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");

我是否需要在容器svg的所有子文本元素上单独设置值?或者我可以在容器svg上设置值,文本元素将继承该值吗?

任何建议都将不胜感激。

谢谢, 克里斯托弗

1 个答案:

答案 0 :(得分:4)

连字符变成了camelCase:

svg.style.glyphOrientationHorizontal = 90