Skip to content

Instantly share code, notes, and snippets.

@enieber
Last active August 29, 2015 14:25
Show Gist options
  • Save enieber/64dc7b1191c097c4da1b to your computer and use it in GitHub Desktop.
Save enieber/64dc7b1191c097c4da1b to your computer and use it in GitHub Desktop.

##IE 11, chomer, mozilla, android 4.1.1

aling-items

.class{
  aling-items: position;
}
```
```css
.class{
  display: -webkit-box;
  -webkit-box-pack: justify;
  }
```

```css 
.container{
  display: -webkit-flex;
  display: flex;    
  display: -webkit-box;
  -webkit-box-align: center;  /* 2009 OLD: flexbox: box-* */ 
  -moz-box-align: center;  /* 2009 OLD: flexbox: box-* */ 
  -ms-flex-align: center;  /* 2011 MID: flexbox: flex-* */
  -webkit-align-items: center;  
}
```

justify-content: center;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment