naive-ui/demo/documentation/components/grid/zhCN/offset.demo.md

22 lines
361 B
Markdown
Raw Normal View History

2020-01-02 22:40:12 +08:00
# 偏移
```html
<n-row :gutter="12">
<n-col :span="6" :offset="6">
2020-05-30 19:40:31 +08:00
<div class="light-green"></div>
2020-01-02 22:40:12 +08:00
</n-col>
<n-col :span="6" :offset="6">
<div class="green"></div>
</n-col>
</n-row>
```
```css
2020-05-30 19:40:31 +08:00
.light-green {
2020-01-02 22:40:12 +08:00
height: 108px;
2020-05-30 19:40:31 +08:00
background-color: rgba(0, 128, 0, .12);
2020-01-02 22:40:12 +08:00
}
.green {
height: 108px;
2020-05-30 19:40:31 +08:00
background-color: rgba(0, 128, 0, .24);
2020-01-02 22:40:12 +08:00
}
```