Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jimulle/bootstrap-grid-float-fix

Simple fix for floated grid elements of varying sizes (using inline-block)
https://github.com/jimulle/bootstrap-grid-float-fix

Last synced: about 1 month ago
JSON representation

Simple fix for floated grid elements of varying sizes (using inline-block)

Awesome Lists containing this project

README

        

# bootstrap-grid-float-fix
Simple fix for floated grid elements of varying sizes (using inline-block)

Changes the grid elements to inline-block which allows us to alleviate the annoying float issues when elements flow over to a new row.



CSS Usage:

Simply add the CSS to your page's main CSS file (or add the CSS file iself as a link).

SASS Usage:

Add `@import "col-fix";` to your bootstrap.scss file

HTML Setup:

Add the class `col-fix` to all elements within the row that needs fixed

example:
```


...

...

...

...

```