I have this simple piece of HTML.
Why doesn't the background color fill the entire #footer element's background - specifically, including the margin?
<!doctype html>
<html>
<head>
  <style>
    #footer {
      background: #263238;
      margin: 100px;
      padding: 0;
    }
    .footer-text {
      margin: 0;
      color: #fff;
    }
  </style>
</head>
<body>
  <div id="footer">
    <div class="footer-text">All Rights Reserved © 2016</div>
  </div>
</body>
</html> 
     
     
    
 
     
     
     
     
     
    