Mr.Shi
2023-08-21 035ea93f7bbcfcc43bcc7adbb1d0504df6065947
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
    <div class="content">
        <div class="content_left">1</div>
        <div class="content_center">2</div>
        <div class="content_right">3</div>
    </div>
</template>
 
 
<script setup>
 
</script>
 
<style lang="scss" scoped>
    .content {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        .content_left {
            width: 920px;
            background-color: aquamarine;
        }
        .content_center {
            flex: 1;
            margin: 0 40px;
            background-color: aquamarine;
        }
        .content_right {
            width: 920px;
            background-color: aquamarine;
        }
    }
</style>