Centering a canvas

后端 未结 11 1526
野的像风
野的像风 2021-01-30 10:00

How do I markup a page with an HTML5 canvas such that the canvas

  1. Takes up 80% of the width

  2. Has a corresponding pixel h

11条回答
  •  不要未来只要你来
    2021-01-30 10:39

    This will center the canvas horizontally:

    #canvas-container {
       width: 100%;
       text-align:center;
    }
    
    canvas {
       display: inline;
    }
    

    HTML:

    Your browser doesn't support canvas

提交回复
热议问题