【uniapp微信小程序footer】不满一屏固定显示在底部,超出一屏随页面滚动

<template>
	<view class="wrapper">
	    <view class="main">...</view>
	    <view  class="footer">xx智慧农场</view>
	</view >
</template>
<style>
	page {
      
      
		height: 100%;
	}
	.wrapper {
      
      
		height: 100%;
	}
	.main {
      
      
		min-height: 100%; 
		/* 与.footer的高度对应 */
		padding-bottom: 80rpx;
	}
	.footer {
      
      
		height: 80rpx;
		line-height: 60rpx;
		text-align: center;
		margin-top: -80rpx;
	}
</style>

在这里插入图片描述
在这里插入图片描述

参考:https://www.jianshu.com/p/a8f72005e9c0

猜你喜欢

转载自blog.csdn.net/SingDanceRapBall/article/details/131276266
今日推荐