CSS 中的默认 SVG 单位是什么?

What is the default SVG unit in CSS?

我想将 transform SVG 属性转换为 CSS transform。在这里:

<g transform="translate(11.225 164)"/>

但是 CSS 要求我指定单位。指定的正确单位是什么?由于它应该是一个图书馆,我不知道 <svg>widthheightviewport。因此我无法计算 px 左右。

默认(用户)单位是 px。

One px unit is defined to be equal to one user unit. Thus, a length of "5px" is the same as a length of "5".

根据 SVG specification