naive-ui/demo/documentation/components/grid/enUS/pushPull.md
2020-05-30 19:40:31 +08:00

563 B

Push && Pull

See codes to know what happens. Basically it is relative position change.

<n-row :gutter="12">
  <n-col :span="6" :push="6">
    <div class="light-green"></div>
  </n-col>
  <n-col :span="6" :pull="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);
}