浮动布局

<template>
    <div>
        <div class="wrap1">
            <div class="left">

            </div>
            <div class="right">

            </div>
            <div class="center">
                浮动布局
            </div>
        </div>
    </div>
</template>

<script>
    export default {
        
    }
</script>

<style>
    .wrap1 div{
        min-height: 300px;
    }
    .wrap1 .left{
        float: left;
        width: 300px;
        background: red;
    }
    .wrap1 .right{
        float: right;
        width: 300px;
        background: blue;
    }
    .wrap1 .center{
        background: pink;
    }
</style>
<!-- 页面宽度不够影响布局 -->
posted @ 2024-02-23 18:08  雨晨*  阅读(10)  评论(0)    收藏  举报