欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Flex布局

程序员文章站 2022-04-30 12:09:51
...

Flex布局的基本概念参考阮一峰的博客http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html?utm_source=tuicool)
注意在felx-direction属性设置为columncolumn-reverse时,即项目为垂直排列时,应给定一个高度,

<ul class="unicom-tabs vertical" style="height:310px;">
    <li class="active"><span>28</span>发现漏洞</li>
    <li><span>32</span>发现病毒</li>
    <li><span>95</span>体检得分</li>
</ul>
.unicom-tabs{  display: flex;justify-content: space-around; align-items: center; }
.unicom-tabs.vertical{ flex-direction:column; }
.unicom-tabs li{ font-size: 14px; line-height: 32px; text-align: center; cursor: pointer; color: #3deaff; border: 1px solid transparent;}

这样,justify-content: space-around;才可以生效,生成效果如图:
Flex布局
否则会挤在一起:
Flex布局

相关标签: flex布局