Skip to content
/ fxgrid Public

Simple CSS grid framework based on flexbox.

License

Notifications You must be signed in to change notification settings

siarie/fxgrid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fxgrid

A simple CSS grid system based on flexbox.

fxgrid includes only basic grid functionality. That mean no offset, alignment, and reordering features like other flexbox system do.

Install

Installation method available:

Example Usage

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>fxgrid start!</title>
    <link rel="stylesheet" href="https://unpkg.com/fxgrid@latest">
  </head>
  <body>
    <div class="row">
      <div class="col" sm="6" md="4" lg="3">...</div>
      <div class="col" sm="6" md="4" lg="3">...</div>
      <div class="col" sm="6" md="4" lg="3">...</div>
      <div class="col" sm="6" md="4" lg="3">...</div>
    </div>
  </body>
</html>