flex 布局的几个常用属性
作者:互联网
flex 布局的几个常用属性
display 为 flex
:弹性盒子justify-content
:水平对齐方式flex-start
:主轴靠左对齐(默认值)flex-end
:主轴靠右对齐center
:主轴水平居中对齐space-around
:两端对齐,两端间距是中间距离的一半space-between
:两端靠边对齐,中间等距space-evenly
:两端对齐,两端间距与中间距离等距
align-items 为 center
:侧轴垂直居中对齐flex-wrap 为 wrap
, wrap 是换行,默认 nowrap 不换行flex-direction 为 column
:主轴和侧轴换位置,名字不变align-self 为 center
:自身侧轴垂直居中对齐(设置给弹性盒子的子元素)
标签:两端,常用,flex,主轴,space,wrap,对齐,属性 来源: https://www.cnblogs.com/easyjie/p/16668552.html