githoniel / flex

flexbox,flex,css,flex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flex

A less mixin for flexbox.

Available Mixins

The mixin names and their values correspond to the official draft.

  • display
  • justify-content
  • align-items
  • align-self
  • align-content
  • order
  • flex
  • flex-grow
  • flex-shrink
  • flex-basis
  • flex-direction
  • flex-wrap
  • flex-flow

Browser Compatability

In Firefox < 22 you need to add the following snippet to every element that you set display: flex.

/*
 * Legacy Firefox implementation treats all flex containers
 * as inline-block elements.
 */
@-moz-document url-prefix() {
    #selector {
        width: 100%;
        -moz-box-sizing: border-box;
    }
}

Sources

About

flexbox,flex,css,flex


Languages

Language:CSS 92.8%Language:HTML 5.2%Language:CoffeeScript 2.0%