mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-11 13:10:26 +08:00
468 B
468 B
基础用法
<n-row gutter="12">
<n-col :span="6">
<div class="light-green"></div>
</n-col>
<n-col :span="6">
<div class="green"></div>
</n-col>
<n-col :span="6">
<div class="light-green"></div>
</n-col>
<n-col :span="6">
<div class="green"></div>
</n-col>
</n-row>
.light-green {
height: 108px;
background-color: rgba(0, 128, 0, .12);
}
.green {
height: 108px;
background-color: rgba(0, 128, 0, .24);
}