wangmiaozero /
cssgridgenerator
React19 Vite6 ESLint .This project is a way for people to use CSS Grid features quickly to create dynamic layouts. 基于React19 这个项目是让人们快速使用 CSS Grid 功能来创建动态布局的一种方式。
50/100 healthLoading repository data…
alexerlandsson / repository
This is a lightweight CSS grid framework used to build responsive websites and applications. With just a size of 4KB minified (< 1KB gzipped), it is hard to find a smaller framework with the same possibilities.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This is a lightweight CSS grid framework used to build responsive websites and applications. With just a size of 4KB minified (< 1KB gzipped), it is hard to find a smaller framework with the same possibilities.
To use Tiny Grid in your project, download the CSS file tiny-grid.min.css located in the folder name css and include it in the head of you html page.
<link rel="stylesheet" type="text/css" href="path/tiny-grid.min.css">
If you're using SCSS in you project, you could donwload the SCSS file instead. It is named tiny-grid.scss and located in the folder names scss. If you're doing it this way, you have more possibilities to customize the frameworks with your own breakpoints etc.
Tiny Grid uses the same markup as Bootstrap's grid to make it easy to use for everyone. Example of the markup can be seen below:
<div class="container">
<div class="row">
<div class="col-lg-6">This is a column</div>
<div class="col-lg-6">This is another column</div>
</div>
</div>
Container is a class to use to wrap all page content. The max-width is set by changing the $grid-container-max-width variable.
Rows should always wrap columns. This div contains negative margin to remove the padding from the outer columns.
<div class="row">
<!-- Columns goes here -->
</div>
Breakpoint columns defines the width of the column in a certain breakpoint and up. Note that this frameworks uses min-width in the media queries.
The breakpoints could be defined in the $grid-breakpoints map. As default, Tiny Grid comes with the breakpoints sm, md, lg and xl.
As default, the grid system builds on a 12-column system. This could easily be changed by changing the $grid-columns variable to desired value.
To construct a column, use the class col- followed by a breakpoint name and then a width (1 to 12).
<div class="col-md-4"></div>
This example creates a column which will be 33.333% wide (4/12) in the md breakpoint and up.
It is possible to use different column widths in different breakpoints. To do so, just add multiple col- classes.
<div class="col-lg-4 col-md-6"></div>
To add a offset to a column, use the col- class followed by breakpoint name, -offset- and then a width (1 to 12).
<div class="col-lg-offset-2"></div>
To add a column that is not depended by a breakpoint, just ignore the breakpoint name in the class construciton.
<div class="col-6"></div>
![]() | ![]() | ![]() | ![]() | ![]() |
|---|---|---|---|---|
| Yes | Yes | Yes | Yes | 8+ |
The MIT License (MIT)
Copyright (c) 2016 Alexander Erlandsson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Selected from shared topics, language and repository description—not editorial ratings.
wangmiaozero /
React19 Vite6 ESLint .This project is a way for people to use CSS Grid features quickly to create dynamic layouts. 基于React19 这个项目是让人们快速使用 CSS Grid 功能来创建动态布局的一种方式。
50/100 healthDevFranklinAndy /
This is a single page real estate sales website built with SASS(SCSS) with the sole aim of mastering CSS Animation, Manageable Code with SCSS and Some Complex CSS Grid Integration.
31/100 healthewliang /
Skelly is a 12 column grid system made using the CSS Grid display element. The goal of this project is to provide a minimal and modern 12 column responsive CSS grid framework for web development.
44/100 healthal-rasels /
This project is a responsive and modern grid-based layout system designed for dynamic and flexible web page design. It's built with simplicity and elegance in mind, focusing on delivering a seamless user experience.
33/100 healthChristianq010 /
This repo contains my default boilerplate of getting started with React. By default it contains a layout for desktop and mobile implemented on Flexbox and CSS Grids. Tools include ESLint and Prettier. Bundling is done via Parcel.
30/100 healthDTGlov /
This is a clone of the Disney Now Web App all-shows section https://disneynow.com/all-shows. This project was built to solidify my knowlegde in CSS GRID, FLEXBOX and RESPONSIVE DESIGN. This project was built with React Js and SCSS.
34/100 health