Grid - Row with minmax

Developer
Size
4,220 Kb
Views
42,504

How do I make an grid - row with minmax?

Demo for article: https://medium.com/@cwrightdesign/getting-to-know-css-grid-layout-818e43ca71a5. What is a grid - row with minmax? How do you make a grid - row with minmax? This script and codes were developed by Chris Wright on 12 August 2022, Friday.

Grid - Row with minmax Previews

Grid - Row with minmax - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Grid - Row with minmax</title> <link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700|Raleway" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="support-warning"> This demo requires CSS Grid. The current browser you're using doesn't support it and is using a Flexbox fallback. Find a <a href="https://igalia.github.io/css-grid-layout/enable.html">grid-enabled browser</a>.
</div>
<div class="grid grid--4x4"> <div class="grid__item theme-peach grid align-center"> <div class="content"> <h2 class="heading"> The Horror In Clay </h2> <p class="description">Of such great powers or beings there may be conceivably a survival… a survival of a hugely remote period when… consciousness was manifested, perhaps, in shapes and forms long since withdrawn before the tide of advancing humanity… forms of which poetry and legend alone have caught a flying memory and called them gods, monsters, mythical beings of all sorts and kinds…</p> </div> </div> <div class="grid__item theme-black grid align-center"> <div class="content"> <h2 class="heading"> The most merciful thing in the world </h2> <p class="description">I think, is the inability of the human mind to correlate all its contents. We live on a placid island of ignorance in the midst of black seas of infinity, and it was not “meant that we should voyage far. The sciences, each straining in its own direction, have hitherto harmed us little; but some day the piecing together of dissociated knowledge will open up such terrifying vistas of reality, and of our frightful position therein, that we shall either go mad from the revelation or flee from the light into the peace and safety of a new dark age. </p> </div> </div> <div class="grid__item theme-white grid align-center"> <div class="content"> <h2 class="heading"> The awesome grandeur of the cosmic cycle </h2> <p class="description">Wherein our world and human race form transient incidents. They have hinted at strange survivals in terms which would freeze the blood if not masked by a bland optimism. But it is not from them that there came the single glimpse of forbidden eons which chills me when I think of it and maddens me when I dream of it. </p> </div> </div> <div class="grid__item theme-grey grid align-center"> <div class="content"> <h2 class="heading"> That glimpse, like all dread glimpses of truth </h2> <p class="description"> Flashed out from an accidental piecing together of separated things - in this case an old newspaper item and the notes of a dead professor. I hope that no one else will accomplish this piecing out; certainly, if I live, I shall never knowingly supply a link </p> </div> </div>
</div> <script src="js/index.js"></script>
</body>
</html>

Grid - Row with minmax - Script Codes CSS Codes

* { box-sizing-border: box;
}
.support-warning { background: #ccb11c; color: #000; display: block; font-family: 'Raleway', sans-serif; font-weight: 700; opacity: 0.95; padding: 3rem; position: fixed; text-align: center; top: 0; left: 0; width: 100%; z-index: 5;
}
.support-warning a { color: inherit;
}
/* flexbox fallback */
.grid { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;
}
.grid--4x4 > .grid__item { -webkit-box-flex: 1; -ms-flex: 1 0 auto; flex: 1 0 auto;
}
@supports ((display: -ms-grid) or (display: grid)) { .support-warning { display: none; } .grid { display: -ms-grid; display: grid; }
}
.grid--4x4 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: (minmax(50vh, auto) minmax(50vh, auto))[auto-fit]; grid-template-rows: repeat(auto-fit, minmax(50vh, auto) minmax(50vh, auto));
}
.align-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
}
.content { padding: 3.5rem; max-width: 400px;
}
.heading { font-family: 'Libre Baskerville', serif; font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem;
}
.description { font-family: 'Raleway', sans-serif; font-size: 1rem; line-height: 1.5;
}
.theme-peach { background: #fe5c5d; color: #1c1e22;
}
.theme-black { background: #1c1e22; color: #fff;
}
.theme-white { background: #fff; color: #1c1e22;
}
.theme-grey { background: #333; color: #fff;
}

Grid - Row with minmax - Script Codes JS Codes

"use strict";
Grid - Row with minmax - Script Codes
Grid - Row with minmax - Script Codes
Home Page Home
Developer Chris Wright
Username chriswrightdesign
Uploaded August 12, 2022
Rating 3
Size 4,220 Kb
Views 42,504
Do you need developer help for Grid - Row with minmax?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Chris Wright (chriswrightdesign) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!