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

display: table; 100%的宽度

时间:2017-05-26 09:23:31      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:round   type   pre   display   margin   meta   html   border   image   

技术分享

 

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        .box1 {
            display: table;
        }
        .box2 {
            display: table-cell;
            border: 1px solid #000;
        }
        .box3 {
            width: 1%;
            display: table-cell;
            background-color: red;
        }
        /*
            box3 = 1%
            得出
            box2 = 99%

            box3 = 32px
            box2 = 32 * 99 = 3168
            body 1366
            得出
            box2 = body - box3 = 1366 - 32 = 1334
         */
    </style>
</head>
<body>
    <div class="box1">
        <div class="box2">box2</div>
        <div class="box3">box3</div>
    </div>
</body>
</html>

 

display: table; 100%的宽度

标签:round   type   pre   display   margin   meta   html   border   image   

原文地址:http://www.cnblogs.com/jzm17173/p/6906846.html

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