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

Flex布局,具有等分布局的能力,如图

时间:2017-09-29 16:37:20      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:color   flex   code   splay   height   lis   one   http   ext   

<html>
<head>
    <title></title>
    <style type="text/css">
        *{
            margin: 0;padding: 0;
        }
        ul{
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            width: 1000px;
            margin: 0 auto;
            list-style-type: none;
            border: 1px solid red;
        }
        li{
            width: 30%;
            background-color: #eee;
            margin: 10px auto;
            height: 40px;
        }
    </style>
</head>
<body>
    <ul>
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
    </ul>
</body>
</html>

技术分享

 

Flex布局,具有等分布局的能力,如图

标签:color   flex   code   splay   height   lis   one   http   ext   

原文地址:http://www.cnblogs.com/xzma/p/7611025.html

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