我是靠谱客的博主 奋斗唇膏,最近开发中收集的这篇文章主要介绍flex布局(二) : 位置与排列方式flex布局(二) : 位置与排列方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

flex布局(二) : 位置与排列方式

1. flex-direction 决定主轴方向

改变主轴方向为:水平row(默认) 或者 垂直column
并且设置item元素的排序方式start->end(默认) 或者 end->start

  • row
  • row-reverse
  • column
  • column-reverse
<style>
.container{
    /* 改变主轴方向 */
    display: flex;
    flex-direction: row;
    flex-direction: row-reverse;
    flex-direction: column;
    flex-direction: column-reverse;
}
</style>

在这里插入图片描述

2. justify-content 决定主轴上的对齐方式

改变item元素在主轴main(水平)上的对齐方式

  • flex-start
  • flex-center
  • flex-end
  • space-between
  • space-evently
  • space-around
<style>
.container{
    display: flex;
    /* 改变item在主轴上的对齐方式 */
    justify-content: flex-start;
    justify-content: flex-end;
    justify-content: center;
    justify-content: space-between;
    justify-content: space-evenly;
    justify-content: space-around;
}
</style>

在这里插入图片描述

3. align-items 决定交叉轴上的对齐方式

改变item元素在在交叉轴cross(垂直)上的对齐方式

  • stretch
  • baseline
  • flex-start
  • center
  • flex-end
<style>
.container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;

    /* 改变item在交叉轴(垂直)cross的对齐方式 */
    align-items: stretch;
    align-items: flex-start;
    align-items: center;
    align-items: flex-end;
    align-items: baseline;
    
}
.item{
    width: 100px;
    /* 不设置item高度 */
    /* height: 100px; */
    color: #fff;
    text-align: center;
}
</style>


在这里插入图片描述

最后

以上就是奋斗唇膏为你收集整理的flex布局(二) : 位置与排列方式flex布局(二) : 位置与排列方式的全部内容,希望文章能够帮你解决flex布局(二) : 位置与排列方式flex布局(二) : 位置与排列方式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部