grid布局

平分三列


	.grid3{
		display: grid;
		grid-template-columns: repeat(3,minmax(0,1fr));
		grid-gap: 10px;
	}

你可能感兴趣的:(css3,前端,css)