Alignment

Alignment classes are provided to help with both container and text alignment. Floats are currently provided, but may be removed in future versions thanks to the browser support of flexbox. If you need more control over alignment, please also see flexbox grid.

Classes available:

    
        .float-left {
            float: left;
        }

        .float-right {
            float: right;
        }

        .clear-fix {
            @include clearfix();
        }

        .align-left {
            text-align: left;
        }

        .align-center {
            text-align: center;
        }

        .align-right {
            text-align: right;
        }    
    
Up Next: »