Responsive Grid

Developer
Size
2,064 Kb
Views
14,168

How do I make an responsive grid?

What is a responsive grid? How do you make a responsive grid? This script and codes were developed by Alan Shortis on 14 November 2022, Monday.

Responsive Grid Previews

Responsive Grid - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Responsive Grid</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <ul class="grid"> <li class="grid__item">1</li> <li class="grid__item">2</li> <li class="grid__item">3</li> <li class="grid__item">4</li> <li class="grid__item">5</li> <li class="grid__item">6</li> <li class="grid__item">7</li> <li class="grid__item">8</li> <li class="grid__item">9</li> <li class="grid__item">10</li> <li class="grid__item">11</li> <li class="grid__item">12</li>
</ul>
</body>
</html>

Responsive Grid - Script Codes CSS Codes

*, *:before, *:after { box-sizing: border-box;
}
:root { background: #333; color: white; font-family: sans-serif;
}
.grid { display: block; padding: 10px;
}
.grid:after { clear: both; content: ""; display: table;
}
.grid__item { background: #666; display: block; float: left; margin: 10px; padding: 20px; text-align: center; width: calc((100% / 2) - 20px); transition: all 200ms ease;
}
@media (min-width: 450px) { .grid__item { width: calc((100% / 3) - 20px); }
}
@media (min-width: 768px) { .grid__item { width: calc((100% / 4) - 20px); }
}
Responsive Grid - Script Codes
Responsive Grid - Script Codes
Home Page Home
Developer Alan Shortis
Username alanshortis
Uploaded November 14, 2022
Rating 3
Size 2,064 Kb
Views 14,168
Do you need developer help for Responsive Grid?

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!

Alan Shortis (alanshortis) Script Codes
Create amazing marketing copy 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!