Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I take a div within a canvas element like following:

<canvas>
    <div></div>
</canvas>

Here both of them has height and width. But here I can't see the div!

Is it not possible to take a div or p within a canvas?

share|improve this question

2 Answers

up vote 23 down vote accepted

You cannot place elements inside a canvas (and have both displayed); they are only displayed if the browser does not understand the canvas element.

If you would like to position elements over the same area as a canvas, here is one technique (among many) that would let you do it:

HTML

<div id="canvas-wrap">
  <canvas width="800" height="600"></canvas>
  <div id="overlay"></div>
</div>

CSS

#canvas-wrap { position:relative } /* Make this a positioned parent */
#overlay     { position:absolute; top:20px; left:30px; }

Here's another technique, which lets the content of the div flow normally and makes the canvas a background to the content:

CSS

#canvas-wrap { position:relative; width:800px; height:600px }
#canvas-wrap canvas { position:absolute; top:0; left:0; z-index:0 }
share|improve this answer
Thanks for your solution. – thecodeparadox Apr 24 '11 at 3:08
if i want to use graphics property of canvas then how can i get ID of Canvas.. – SilentBomb Mar 2 '12 at 12:24
@SilentBomb I don't understand your question, nor how it relates to this answer. You should probably post this as a new question with sufficient details and examples. – Phrogz Mar 2 '12 at 13:48
Suppose i am using a <div> to display image(eg: tiff,jpeg,bmp etc) and i want to create rectangle,line or any shape(using canvas property).So how can i draw these shapes on a div(contains image). – SilentBomb Mar 5 '12 at 5:26

You can use the http://easeljs.com/

share|improve this answer
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – NullUserException Dec 7 '11 at 16:28
@NullUserException I'm sorry I got a bit trigger-happy on the flag button. I'll keep the meta link at hand and handle this myself next time. – Benoit Garret Dec 7 '11 at 17:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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