How to center canvas in html5

后端 未结 9 1447
自闭症患者
自闭症患者 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:46

    Just center the div in HTML:

      #test {
         width: 100px;
         height:100px;
         margin: 0px auto;
         border: 1px solid red;
       }
    
    
    

    Just change the height and width to whatever and you've got a centered div

    http://jsfiddle.net/BVghc/2/

提交回复
热议问题