Please Help! Why is my content still hiding behind my header?

No matter what I try I cant seem to resolve this! My content gets cut off as it is hidden behind the nav bar?
What am I doing wrong?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
  </head>
  <body ng-app="starter">
  
      <ion-header-bar class="bar bar-stable">
        <h1 class="title">Ionic Blank Starter</h1>
      </ion-header-bar>
      <ion-content has-header="true">
        <h1>1111111111</h1>
        <h2>2222222222</h2>
        <h2>3333333333</h2>
        <h2>4444444444</h2>
      </ion-content>

  </body>
</html>

I think the has-header attribute has been removed in the latest beta. It doesn’t appear on its docs. As far as I know this is now handled automatically.

Try adding class=“has-header”.

I had the same problem and added class=“has-header” to ion-content . And its working. But is has-header deprecated or is it going to be removed?