Random grid generator

Are you bored of designing with the same old 12-column grids? Generate a random layout to kickstart your design inspiration!

3 columns

Get the code:

.grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 400px;
	grid-gap: 20px;
}