You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CSS Grids makes it very easy to make grids. It is much simpler than using bootstrap like columns and is responsive without having to use media queries.
All the css properties of the grid can be set using the .css method. This is advanced usage and once we figure out the common patterns, we'll expose them as regular api.
grid=Grid()
foriinrange(10):
grid<<"Lorem ipsum dolor sit amet, consectetur adipiscing elit"grid.css("template-template-columns", "repeat(auto-fit, minmax(300px, 1fr))")
CSS Grids makes it very easy to make grids. It is much simpler than using bootstrap like columns and is responsive without having to use media queries.
Proposed API
All the css properties of the grid can be set using the
.css
method. This is advanced usage and once we figure out the common patterns, we'll expose them as regular api.References
The text was updated successfully, but these errors were encountered: