Bootstrap 4 flex grid system only

与世无争的帅哥 提交于 2019-11-29 13:37:58

UPDATE (JULY 2019)

Since v4.0 (v4.1 here), you can simply use either bootstrap-grid.css or bootstrap-grid.min.css , it only includes grid system(v4.0 & v4.1) and flex utilities (v4.0 & v4.1)


Old Answer:

At this Alpha stage, you can toggle between true/false for using flexbox (if using a CSS preprocessor) as per bootstrap V4 Alpha docs

Flexbox support has finally come to Bootstrap. Opt-in to the new CSS layout styles with the flick of a variable or the swap of a stylesheet.

How it works:

If you’re familiar with modifying variables in Sass—or any other CSS preprocessor—you’ll be right at home to move into flexbox mode.

  1. Open the _variables.scss file and find the $enable-flex variable.
  2. Change it from false to true.
  3. Recompile, and done!

Alternatively, if you don’t need the source Sass files, you may swap the default Bootstrap compiled CSS with the compiled flexbox variation. Head to the download page for more information.

At the time of answering this question, if you download the compiled .zip found here, it comes with a css folder that has three stylesheets,

  • bootstrap-grid.css
  • bootstrap-normalize.css
  • bootstrap.css

The bootstrap-grid file has only the grid CSS and nothing else, which is what you're looking for.

if you just want to use flex-grid. I recommend

https://www.flexible-grid.com

https://github.com/kenangundogan/flexible-grid

flexible-grid/
    ├── scss
        ├── flexible-grid.scss
        ├── _variables.scss
        ├── _definitions.scss
        ├── _wrapper.scss
        ├── _array-list.scss
        ├── _attribute.scss
        ├── _grid.scss
        └── _normalize.scss

Update 2019, Bootstrap 4.3+

You can get the grid only using bootstrap-grid.css included in the Bootstrap 4 download. http://getbootstrap.com/docs/4.1/getting-started/contents/#css-files

This includes the grid, flexbox and display utilities, but not all the utilities like the borders, spacing, etc.. If you want a further 'Customize and download' option you must rebuild Bootstrap using SASS, or use a 3rd party tool like themestr.app


Original Answer, Bootstrap 4 alpha (flexbox optional)

There may be customizable downloads in the future, but the only way currently is to enable the $enable-flex variable. Here's an example using SASS.

$enable-flex:true;

http://codeply.com/go/JbGGN4Ok3A

As of Bootstrap 4 alpha 6, flexbox is now the default: http://www.codeply.com/go/p/bootstrap_4.0.alpha.6

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!