flex中justify-content: center导致的子元素显示不完全解决

Posted 瘪哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flex中justify-content: center导致的子元素显示不完全解决相关的知识,希望对你有一定的参考价值。

多嵌入一层标签

.content 
    display: flex;
    height: 200px;
    


.parent 
    display: flex;
    justify-content: center;
    width: 800px;
    margin-left: 100px;
    border: 1px solid green;
    overflow: auto;


.flex-item 
    flex: 0 0 200px;
    width: 200px;
    height: 180px;
    border: 1px solid red;


<div class="parent">
    <div class="content">
        <div class="flex-item"></div>
        <div class="flex-item"></div>
    </div>
</div>

 

flex常见属性

参考技术A 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.   .icondisplay:flex   

      .icondisplay:inline-flex

以上是关于flex中justify-content: center导致的子元素显示不完全解决的主要内容,如果未能解决你的问题,请参考以下文章

flex弹性布局中justify-content:space-between 不起作用

flex弹性布局中justify-content:space-between 不起作用

flex弹性布局中justify-content:space-between 不起作用

flex 常用布局自我记录

flex布局justify-content属性和align-items属性设置

700行无用 纯 CSS 祝考生 金榜高粽《1_bit 的无用 CSS 代码 》