CSS Grid Sandbox

Developer
Size
2,220 Kb
Views
12,144

How do I make an css grid sandbox?

What is a css grid sandbox? How do you make a css grid sandbox? This script and codes were developed by Chris Evans on 27 December 2022, Tuesday.

CSS Grid Sandbox Previews

CSS Grid Sandbox - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS Grid Sandbox</title> <link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 class="text--align-centre">CSS Grid Sandbox</h1>
<div class="grid"> <div class="item item--wide"></div> <div class="item item--large"></div> <div class="item item--tall"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item item--small"> </div> <div class="item item--small"> </div> <div class="item item--small"> </div> <div class="item item--small"></div> <div class="item"></div> <div class="item"></div> <div class="item item--wide"></div>
</div>
</body>
</html>

CSS Grid Sandbox - Script Codes CSS Codes

body { font-family: 'Helvetica', serif; color: #666;
}
.grid { display: grid; box-sizing: border-box; width: 100%; padding: 0 25%; grid-template-columns: repeat(8, 1fr); grid-auto-rows: 96px; grid-column-gap: 16px; grid-row-gap: 16px;
}
.item { background-color: #50c878; grid-row-end: span 2; grid-column-end: span 2;
}
.item--wide { grid-column-end: span 4;
}
.item--tall { grid-row-end: span 4;
}
.item--large { grid-row-end: span 4; grid-column-end: span 4;
}
.item--small { grid-row-end: span 1; grid-column-end: span 1;
}
.text--align-centre { text-align: center;
}
CSS Grid Sandbox - Script Codes
CSS Grid Sandbox - Script Codes
Home Page Home
Developer Chris Evans
Username anitorious
Uploaded December 27, 2022
Rating 3
Size 2,220 Kb
Views 12,144
Do you need developer help for CSS Grid Sandbox?

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 Evans (anitorious) Script Codes
Create amazing captions 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!