Nacim Idjakirene
Nacim Idjakirene

Reputation: 1931

Ionic 2 : can't scroll all the content of the page

In my Ionic 2 application, i give a margin-top : 26vh; to ion-content. Now when i have a long list in my page, i can't scroll all the content to the bottom, so the last part of the list is not visible.

Any idea ?

UPDATE

I think 26vh (same as the margin-top) on the bottom is the value of the no scrollable content.

Upvotes: 0

Views: 546

Answers (1)

Philip Brack
Philip Brack

Reputation: 1328

Since you indicated wanting to do this on ion-content. Why not just do this to see the same effect?

<ion-content>
  <div style="margin-top : 26vh"></div>
</ion-content>  

Upvotes: 2

Related Questions