首页 > 其他分享 >控制一行显示多少个Item

控制一行显示多少个Item

时间:2022-09-30 20:12:02浏览次数:41  
标签:width 100% list 一行 Item grid template 多少 24px

.project-list-ul {
	display: grid;
	margin-top: 5px;
	grid-template-columns: repeat(7, minmax(0,1fr));
	grid-template-rows: max-content;
	height: calc(100% - 40px);
	width: 100%;
	gap: 24px;
}

.content-list {
	position: absolute;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
}
@media screen and (max-width: 1920px) {
	.project-list-ul {
		grid-template-columns: repeat(5, minmax(0,1fr));
	}
}

标签:width,100%,list,一行,Item,grid,template,多少,24px
From: https://www.cnblogs.com/freddyhuang/p/16745980.html

相关文章