扫码关注官方订阅号
ionic中ion-content里加ion-list和ion-item有自带的边距,这个要怎么去掉?
闭关修行中......
<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.
以上是ionic官方文档的说明,只需要给ion-content标签加上padding="fasle"就可以了。
padding="fasle"
我直接强制使用!important干掉 - -
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
以上是ionic官方文档的说明,只需要给ion-content标签加上
padding="fasle"
就可以了。我直接强制使用!important干掉 - -