表格布局

<template>
    <div>

    <div class="wrap4 wrap">
        <div class="left"></div>
        <div class="center">
            表格布局
        </div>
        <div class="right"></div>
    </div>
    </div>
</template>

<script>
    export default {
        
    }
</script>

<style>
      .wrap4{
            display: table;
            width: 100%;
            height: 200px;
        }
        .wrap4>div{
            display: table-cell;
        }
        .wrap4 .left{           
            width: 300px;
            background: red;
        }
        .wrap4 .right{          
            width: 300px;
            background: blue;
        }
        .wrap4 .center{
            background: pink;
        }
</style>
<!-- 兼容性好,但是有时候不能固定高度,因为会被内容撑高。-->
posted @ 2024-02-23 18:08  雨晨*  阅读(21)  评论(0)    收藏  举报