12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*
- dispaly 相关样式 包括 dispaly flex
- */
- .dis-inline{
- display: inline;
- }
- .dis-inline-block{
- display: inline-block;
- }
- .dis-none{
- display: none!important;
- }
- .dis-block{
- display: block!important;
- }
- .flew{
- display: flex;
- //justify-content: center;
- //align-items: center;
- }
- .flew-row-wrap{
- flex-flow: row wrap;
- }
- .flew-row-nowrap{
- flex-flow: row nowrap;
- }
- //.flew-column-wrap{
- // flex-flow: column wrap;
- //}
- .flew-between{
- justify-content: space-between;
- }
- .flew-center{
- justify-content:center;
- }
- .flew-around{
- justify-content: space-around;
- }
- .flew-start{
- justify-content: flex-start;
- }
- .flew-end{
- justify-content: flex-end;
- }
- //
- .flew-align-start{
- align-items: flex-start;
- }
- .flew-align-end{
- align-items: flex-end;
- }
- .flew-align-center{
- align-items: center;
- }
- .flew-column{
- display: flex;
- flex-flow: column nowrap;
- }
- .flew-column-wrap{
- flex-flow: column wrap;
- }
- //.flew-column-between{
- // justify-content: space-between;
- //}
- //.flew-column-around{
- // justify-content: space-around;
- //}
- //.flex-column-start{
- // justify-content: flex-start;
- //}
- //.flex-column-end{
- // justify-content: flex-end;
- //}
- .flex-grow-1{
- flex-grow: 1;
- }
- .flex-none{
- flex:none;
- }
- .flex-auto{
- flex:auto;
- }
|