Get started with flexiblegs-css CDN
MIT licensed
FlexibleGS-CSS is a lightweight CSS library that provides flexible, grid-based layout solutions for web development.
Tags:- css
- grid
- responsive
- framework
- flexible
- flexbox
- flex
Stable version
Copied!
How to start using flexiblegs-css CDN
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.cdnhub.io/flexiblegs-css/5.6.0/flexiblegs-css.min.css">
<style>
/* Your custom CSS rules go here */
body {
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Flexible Grid System Example</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero.</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
</div>
</body>
</html>
Copied!
Copied!