<ion-content> is hiding behind <ion-header>

My ionic version is 3.19.1, and checked the scenario in android device and in browser but the result is same. Please see the image i have attached with this issue. .

<ion-header>

  <ion-navbar>
    <ion-title>Physics</ion-title>
  </ion-navbar>

</ion-header>

<ion-content padding>
		<ion-list class="chapter-list">
			<button ion-item no-padding *ngFor="let chapterList of chapterLists" (click)="chapterListItemClk(event)" no-border>
				{{ chapterList.video_name }}
				<img src="{{chapterList.video_icon}}" item-left alt="">
			</button>  
		</ion-list>
</ion-content>