次のようなjavascriptでキャンバス要素を作成しています
Can=document.createElement("canvas");
次に、この要素の幅をセンチメートル単位で設定します。私がやっている
Can.style.width="8cm";
Can.style.height="5cm";
次のような他のcssプロパティを設定しています
Can.style.cssText = 'position:relative; top:24px; left:28px; border-radius:30px; float:left; cursor:pointer; box-shadow: 0px 0px 2px 2px black; background-color:#cdcdcd';
しかし、それは設定されていません。何が問題なの?これを行う方法?