使用 flex 布局,上面的 tabs 设置高度,然后其余空间都给到 scroll view。 懒得打开微信开发者工具,你把 body div 换成小程序的 view 就行了 <body style="height: 100vh; display: flex; flex-direction: column;"> <div style="height: 100px; background-color: orange;">Tabs</div> <div style="flex-grow: 1; background-color: orchid;">scroll view</div> </body>
使用 flex 布局,上面的 tabs 设置高度,然后其余空间都给到 scroll view。
懒得打开微信开发者工具,你把
body
div
换成小程序的view
就行了