We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Will we have a predefined grid systems based on variable number of --columns (both flex and grid), like these ones:
--columns
The text was updated successfully, but these errors were encountered:
Master CSS's grid system is arbitrary and more flexible than the traditional 12-column, 16-column, or 24-column.
<!-- grid --> <div class="grid-cols:5 grid-cols:6@sm grid-cols:8@md grid-cols:16@lg gap:5x gap:6x@sm">...</div> <!-- flex --> <div class="flex gap:5x"> <div class="w:1/4 w:1/6@sm">...</div> <div class="w:1/4 w:2/6@sm">...</div> <div class="w:2/4 w:3/6@sm">...</div> </div>
The documentation of the grid system has indeed been missing since v1. We will add a new page docs/grid-system during the 2.0 RC.
docs/grid-system
https://css.master.co/docs/grid-columns
Sorry, something went wrong.
No branches or pull requests
Description
Will we have a predefined grid systems based on variable number of
--columns
(both flex and grid), like these ones:The text was updated successfully, but these errors were encountered: