How to center canvas in html5

后端 未结 9 1466
自闭症患者
自闭症患者 2020-12-12 11:02

I\'ve been searching for a solution for a while now, but haven\'t found anything. Maybe it\'s just my search terms. Well, I\'m trying to make the canvas center according to

9条回答
  •  一向
    一向 (楼主)
    2020-12-12 11:44

    The above answers only work if your canvas is the same width as the container.

    This works regardless:

    #container {
      width: 100px;
      height:100px;
      border: 1px solid red;
      
      
      margin: 0px auto;
      text-align: center;
    }
    
    #canvas {
      border: 1px solid blue;
      width: 50px;
      height: 100px;
      
    }

提交回复
热议问题