控制一行显示多少个Item

.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));
	}
}
posted @ 2022-09-30 20:02  春风得意之时  阅读(34)  评论(0编辑  收藏  举报