uniapp grid布局

176 阅读1分钟
<!-- 专题 -->
		<view class="theme" >
			<common-title>
				<template #name >专题精选</template>
				<template #custom >
					<navigator url="" class="more" >More +</navigator>
				</template>
			</common-title>
		<view class="content" >
			<theme-item v-for="(item, indx) in 8" :key="index"></theme-item>
		</view>
		</view>
.theme {
		padding-top:  50rpx;
		.more {
			font-size: 32rpx;
			color: #888;
			
		}
		.content {
			margin-top: 30rpx;
			padding:0 30rpx ;
			display: grid;
			gap:15rpx;
			grid-template-columns: repeat(3,1fr);
		}
	}

屏幕截图 2024-07-12 170144.png