up vote 15 down vote favorite
4
share [g+] share [fb]

I have 2 canvas, one use old html "width" and "height" to size it, the other use CSS

<canvas id="compteur1" width="300" height="300" onmousedown="compteurClick(this.id);"></canvas>
<canvas id="compteur2" style="width: 300px; height: 300px;" onmousedown="compteurClick(this.id);"></canvas>

compteur1 display like it should, but not compteur2. the content is drawn using javascript on a 300x300 canvas.

why is there a display difference? Thanks!

Screenshot: alt text

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

It seems that the width and height attributes determine the width or height of the canvas's coordinate system, whereas the CSS properties just determine the size of the box in which it will be shown.

(I do think they should make this just a bit clearer in the HTML5 spec...)

link|improve this answer
1  
indeed.. I always thought direct attributes like "width" and "height" were deprecated in recent html versions.. – Sirber Apr 9 '10 at 0:02
3  
Oh, apparently it's actually described rather well at whatwg.org/specs/web-apps/current-work/multipage/… (section #attr-canvas-width). The trouble is that I clicked on the wrong width before and went to the #dom-canvas-width section instead. Filed w3.org/Bugs/Public/show_bug.cgi?id=9469 about it. – SamB Apr 9 '10 at 16:27
feedback

To set the width and height you need, you may use canvasObject.setAttribute('width', '475');

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.