当我写了一些小程序时,我遇到了一个问题。有一个SVG textNode:
textMeasureNode.style.cssText
"font-family: "Open Sans", Arial, Helvetica, sans-serif; font-size: 22px; font-style: oblique; font-weight: normal; fill: #333333;"
and
textMeasureNode.textContent
"Q1"
当我调用该函数时:
textMeasureNode.getComputedTextLength()
我在IE和Chrome中获得了不同的值。
IE :
49.269996643066406
铬:
29.34765625
似乎font-style: oblique
会影响这些结果。有人遇到过这个问题吗?