如何让 DIV 的背景颜色铺满整个屏幕

How do I make a DIV's background color spread the whole screen

我想使 div 的背景颜色在任何尺寸的屏幕上流出整个宽度和高度??

HTML:

<body>
    <div id="header-BG"></div>
</body>

CSS:

body {
    }

#header-BG{ 

/* content */

}

尝试:

html {
    background-color: #EEEEEE;
}

html,
body {
    margin: 0;
    height: 100%;
}
body {
    background-color: #EEEEEE;
}

html,
body {
  margin: 0;
  height: 100%;
}
body {
  min-height: 100%;
}
#header-BG {
  height: 100%;
  background: red;
}
<div id="header-BG"></div>