In ionic, ion-content plus ion-list and ion-item have their own margins. How to remove this?
大家讲道理2017-05-15 17:13:08
<ion-content
[delegate-handle=""]
[direction=""]
[locking=""]
[padding=""]
[scroll=""]
[overflow-scroll=""]
[scrollbar-x=""]
[scrollbar-y=""]
[start-x=""]
[start-y=""]
[on-scroll=""]
[on-scroll-complete=""]
[has-bouncing=""]
[scroll-event-interval=""]>
...
</ion-content>
padding
(optional)
boolean
Whether to add padding to the content. Defaults to true on iOS, false on Android.
The above is the description of ionic official document. You only need to add padding="fasle"
to the ion-content tag.