display: table; 100%的宽度

Posted jzm17173

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了display: table; 100%的宽度相关的知识,希望对你有一定的参考价值。

 

<!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%的宽度的主要内容,如果未能解决你的问题,请参考以下文章

求大神来解决!!!!!css display: table布局 页面宽度超出怎么解决

html代码,写了table-layout: fixed 以后 table为啥没100%的宽度

具有 100% 宽度的 HTML 表格,在 tbody 内具有垂直滚动 [重复]

具有 100% 宽度的 HTML 表格,在 tbody 内具有垂直滚动 [重复]

具有 display:table 样式的嵌套 div 在 IE 中不会拉伸到 100% 高度

elementui的table在ie下宽度不能100%显示的问题