首页htmlbackgroundPage Widget - 如何设置div的高度以自动调整背景大小

Page Widget - 如何设置div的高度以自动调整背景大小

我们想知道如何设置div的高度以自动调整背景大小。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#master_head {
  width: 99%;
  min-width: 320px;
  border: 1px solid red;
  min-height: 50px;
  background:url(http://www.w3cschool.cn/style/download.png) no-repeat top;
  background-size: contain;
  position: fixed;
  top: 0;
  bottom: 0;
}
</style>
</head>
<body>
  <div id="master_head"></div>
</body>
</html>