<template> 中的代码:
<template>
<div class="chart-box">
<div class="item-box">A</div>
<div class="item-box">B</div>
<div class="item-box">C</div>
</div>
</template>
<style> 中的代码:
.chart-box {
display: flex;
justify-content: space-around;
.item-box {
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
}
.chart-box div:nth-child(1) {
background-color: lightgreen;
}
.chart-box div:nth-child(2) {
background-color: lightskyblue;
}
.chart-box div:nth-child(3) {
background-color: lightcoral;
}
}

版权声明:本文为cdd9527原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。