forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
8 years ago
|
.bi-flex-wrapper-vertical-center .flex-wrapper-vertical-center-wrapper {
|
||
|
display: box;
|
||
|
/* OLD - Android 4.4- */
|
||
|
display: -webkit-box;
|
||
|
/* OLD - iOS 6-, Safari 3.1-6 */
|
||
|
display: -moz-box;
|
||
|
/* OLD - Firefox 19- (buggy but mostly works) */
|
||
|
display: -ms-flexbox;
|
||
|
/* TWEENER - IE 10 */
|
||
|
display: -webkit-flex;
|
||
|
/* NEW - Chrome */
|
||
|
display: flex;
|
||
|
/* NEW, Spec - Opera 12.1, Firefox 20+ */
|
||
|
/* 09版 */
|
||
|
-webkit-box-orient: horizontal;
|
||
|
/* 12版 */
|
||
|
-webkit-flex-direction: row;
|
||
|
-moz-flex-direction: row;
|
||
|
-ms-flex-direction: row;
|
||
|
-o-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
/* 09版 */
|
||
|
-webkit-box-pack: flex-start;
|
||
|
/* 12版 */
|
||
|
-webkit-justify-content: flex-start;
|
||
|
-moz-justify-content: flex-start;
|
||
|
-ms-justify-content: flex-start;
|
||
|
-o-justify-content: flex-start;
|
||
|
justify-content: flex-start;
|
||
|
/* 09版 */
|
||
|
-webkit-box-align: center;
|
||
|
/* 12版 */
|
||
|
-webkit-align-items: center;
|
||
|
-moz-align-items: center;
|
||
|
-ms-align-items: center;
|
||
|
-o-align-items: center;
|
||
|
align-items: center;
|
||
|
/* 09版 */
|
||
|
/*-webkit-box-lines: multiple;*/
|
||
|
/* 12版 */
|
||
|
-webkit-flex-wrap: nowrap;
|
||
|
-moz-flex-wrap: nowrap;
|
||
|
-ms-flex-wrap: nowrap;
|
||
|
-o-flex-wrap: nowrap;
|
||
|
flex-wrap: nowrap;
|
||
|
min-height: 100%;
|
||
|
float: left;
|
||
|
}
|