Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
add safari -webkit prefix for flex
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed May 2, 2014
1 parent 9c8ffd8 commit c96d889
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
margin-bottom: 100px;
border-bottom: 1px solid black;
display: flex;
display: -webkit-flex;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
}

.set:nth-of-type(4n-3) {
Expand All @@ -58,9 +60,13 @@

.container {
flex: 0 0 10em;
-webkit-flex: 0 0 10em;
display: inline-flex;
display: -webkit-inline-flex;
flex-flow: column;
-webkit-flex-flow: column;
align-items: center;
-webkit-align-items: center;
padding: 20px;
font-size: 13px;
}
Expand Down

0 comments on commit c96d889

Please sign in to comment.