CSS布局-table表格布局


table布局历史久远,现在已经很少使用,但是因为table本身的一些特性,比如上下对齐,左右对齐,文字默认居中使得table布局在处理一些规范的布局时还是很有用的,另外,通过table布局也正好可以学习一下table的使用方式。

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .left{
            background:red;
            /* table布局中的元素默认等分width及height,如果需要设置不同的size,可以直接使用width单独设置,这样会自动布局 */
            /* width: 20%; */
        }
        .right{
            background:blue;
        }
        table{
            width:800px;
            height:200px;
            /* border-collapse属性设置表格的边框是否被合并为一个单一的边框,还是像在标准的HTML中那样分开显示 */
            /* separate:默认值,边框会分开 */
            /* collapse: 如果可能,边框会合并为单一的边框 */
            border-collapse: collapse;
        }
        .table{
            margin-top:20px;
            /* 设置其他元素为table元素,这样就可以在其他元素中使用table布局了。 */
            display: table;
            width:800px;
            height:200px;
        }
        .table-row{
            display: table-row;
        }
        .table-cell{/* middle 当前元素放置在父元素的中部, */
            /* vertical-align: middle; */
            display: table-cell;
        }
    </style>
</head>
<body>
    <!-- table自身带的属性比如左右上下对齐,文字居中显示,使用table布局对于规范的布局很方便 -->
    <table>
        <tr>
            <td class="left"></td>
            <td class="right"></td>
        </tr>
    </table>
    <div class="table">
        <div class="table-row">
            <div class="left table-cell"></div>
            <div class="right table-cell"></div>
        </div>
    </div>
</body>
</html>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM