码迷,mamicode.com
首页 > 其他好文 > 详细

flex布局入门

时间:2021-06-28 19:31:38      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:元素   port   center   code   class   wrap   isp   round   doctype   


<!DOCTYPE html>
<html lang="en">


<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>


    <style>
        div {
            height: 800px;
            display: flex;
            /* 指定主轴为y */
            flex-direction: column;
            /* 指定沿着主轴的排列方式 */
            /*两侧盒子靠边后平均分配 space-between
            元素靠右flex-end
            */
            justify-content: center;
            /* 设置自动换行 */
            flex-wrap: wrap;
            /* 设置侧轴排列 */
            align-items: center;
            /* 设置侧轴排列(有多行元素才生效) */
            align-content: space-between;


        }


        span {
            width: 200px;
            height: 200px;


            background-color: aquamarine;
        }
    </style>


</head>


<body>
    <div><span></span><span></span><span>


        </span><span></span><span></span><span></span><span></span></div>



</body>


</html>

flex布局入门

标签:元素   port   center   code   class   wrap   isp   round   doctype   

原文地址:https://www.cnblogs.com/limakilo/p/14939883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!