Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/grids/css/grids-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
-ms-flex-flow: row wrap;
}

/* Firefox as of 28 supports Flexbox (including flex-wrap) unprefixed.
Use unprefixed flexbox when possible with inline-blocks/prefixed flexbox as a fallback.
*/
@supports(flex-flow: row wrap) {
.pure-g {
display: flex;
flex-flow: row wrap;
}
}

/* Opera as of 12 on Windows needs word-spacing.
The ".opera-only" selector is used to prevent actual prefocus styling
and is not required in markup.
Expand Down