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

弹性布局之定宽剩下填满

时间:2019-07-31 21:38:54      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:div   布局   弹性布局   charset   ext   title   oct   utf-8   splay   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            #container{
                display: flex;
                width: 500px;
                border: 1px solid red;
            }
            #box1{
                background-color: mediumspringgreen;
                width: 100px;
                flex-grow: 0;
            }
            #box2{
                background-color: greenyellow;
                flex-grow: 1;
            }
        </style>
    </head>
    <body>
        <div id="container">
            <div id="box1">
                定宽
            </div>
            <div id="box2">
                填满
            </div>
        </div>
    </body>
</html>

 

弹性布局之定宽剩下填满

标签:div   布局   弹性布局   charset   ext   title   oct   utf-8   splay   

原文地址:https://www.cnblogs.com/223zzm/p/11279026.html

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