Chrome seems to set canvas tags a default width of 300px.

This is a bit of a nuisance when I want a canvas to default to the size of it's containing div, which has an unspecified size.

Using the example here, I'd like the canvas to default to the width of the heading with added padding.

Hope that makes sense.

Is this possible without javascript?

link|improve this question

feedback

2 Answers

http://jsfiddle.net/ecTCD/2/

Set the width of the containing element, and the canvas will fit it. I don't think canvas defaults to a width of 300px, this is most likely a side-effect of you making a div float left, but not giving it an express width.

link|improve this answer
I don't want the containing div to have a fixed width, I want it to be based on the width of the the heading. Canvas does default to a width of 300px in chrome, I've just made a page with only a canvas- it's width is 300px. – Finnnn Oct 17 '11 at 11:33
Do not do this you will be skewing the canvas because the canvas will still be at the default size of 300x150 and merely CSS transformed to appear larger. – Simon Sarris Oct 17 '11 at 12:48
Sorry, you're right about that default width. As far as I can see, there's no way to make something take up 100% of the width of it's parent, if that parent has no explicit width. – puppybeard Oct 17 '11 at 12:53
feedback

Arrange your layout such that there is a div and that div's only job is to dictate and be the size you want the canvas to be.

var canvas = document.createElement('canvas');
canvas.width = div.clientWidth;
canvas.height = div.clientHeight;

Then add the canvas to the div.

link|improve this answer
That is the obvious answer, however my issue is that the canvas tag has been generated server side - it's not created client side. Is this bad practice? – Finnnn Oct 17 '11 at 13:39
There shouldn't be anything wrong with setting canvas width and height as soon as you're able using the same technique. Mozilla Bespin used to constantly check to see if the div changed size and then (re)set the canvas accordingly. – Simon Sarris Oct 17 '11 at 14:17
I suppose I'm trying to make sure the layout looks fine if the user has javascript disabled. Completely avoiding the use of javascript to style the initial layout. It looks like this is not possible, which seems like a serious limitation of the canvas tag. Again, I could be doing something wrong/using bad practices. – Finnnn Oct 17 '11 at 14:32
1  
Canvas is essentially worthless if JavaScript is disabled anyway. :/ – Simon Sarris Oct 17 '11 at 14:55
2  
Well if you must, create them server-side (however you are doing that) with a width and height of 1. <canvas width="1" height="1"></canvas> and then adjust it if they happen to have javascript enabled. – Simon Sarris Oct 17 '11 at 17:03
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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