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

How can I center my canvas? I already tried the command < center> but then the left top corner is centered but I want that my middle of my canvas is the center.

Here's the canvas that I want to center: http://www.inserttalent.nl/~gm15561/project_1.2/periode2.html

I use html5 Kineticjs and javascript.

I hope you can help me.

share|improve this question

2 Answers

up vote 1 down vote accepted

With plain CSS.

Try

Canvas {

    Width: 300px;
    Margin: 0 auto;
    Vertical-align: middle;

}
share|improve this answer

If I understand right your question , you can put:

myCanvas {

border: 1px solid #9C9898;

background-color:#CFF;

    position:absolute;

    left:100px; // go messing with the values ​​left to be centered.

}

or

myCanvas {

border: 1px solid #9C9898;

background-color:#CFF;

    position:center;

}

HTH!

share|improve this answer

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.