Remove HTML canvas border

后端 未结 2 956
隐瞒了意图╮
隐瞒了意图╮ 2021-01-15 17:58

I\'m customising my homepage http://geotheory.co.uk/ with an interactive animation, but having trouble making it feel more seemeless in the page. I want to remove the animat

2条回答
  •  野的像风
    2021-01-15 18:48

    I guess you've not resetted the browser default styles...So you need to reset the default styles.. Use this

    * {
       margin: 0;
       padding: 0;
    }
    

    Explanation : Browser gives padding, margins to some elements, so inorder to reset them you need to use the style which I told you else you can also use CSS reset

    And also use display: block; for (As Kolink Said)

提交回复
热议问题