flex常见属性

2020-09-25  本文已影响0人  天涯人1196

1:flex常见属性总结

justify-content属性:定义项目在主轴上的对齐方式

justify-content: center;   //居中排列

justify-content: flex-start;  // 左对齐

justify-content: flex-end;  //右对齐

justify-content: space-between;  //中间均分,两端对齐

2:flex-direction属性:决定主轴的方向(即项目的排列方向)

flex-direction: row  //从左到右

flex-direction: row-reverse  //从右到左

flex-direction: column  //从上到下

flex-direction: column-reverse  //从下到上

2.   .icon{display:flex}   

      .icon{display:inline-flex}

上一篇下一篇

猜你喜欢

热点阅读