我正在尝试在以下示例中添加“矩阵”属性来缩放 vml 形状。我添加矩阵属性的方式似乎存在一些错误。请帮忙。 注意:该示例将在 IE8 中运行。
<html xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<style>
v\:*{ behavior: url(#default#VML) }
</style>
</head>
<body>
<DIV style="HEIGHT: 400px">
<v:oval strokecolor="red" fillcolor="yellow" matrix="10,0,0,10,0,0" style="position:relative;top:50;left:50;width:75;height:50">
</v:oval>
</DIV>
</body>
</html>