我正在使用 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';
但它没有被设置。有什么问题?这该怎么做?