网络知识

Html 铺满整个浏览器

在css加入下面的代码,可以让body铺满整个屏幕

<style type="text/css">
    html,
    body {
      margin: 0;
      overflow: hidden;
    }