column-offset.vue 780 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <el-row :gutter="20">
  3. <el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
  4. <el-col :span="6" :offset="6"
  5. ><div class="grid-content ep-bg-purple"
  6. /></el-col>
  7. </el-row>
  8. <el-row :gutter="20">
  9. <el-col :span="6" :offset="6"
  10. ><div class="grid-content ep-bg-purple"
  11. /></el-col>
  12. <el-col :span="6" :offset="6"
  13. ><div class="grid-content ep-bg-purple"
  14. /></el-col>
  15. </el-row>
  16. <el-row :gutter="20">
  17. <el-col :span="12" :offset="6"
  18. ><div class="grid-content ep-bg-purple"
  19. /></el-col>
  20. </el-row>
  21. </template>
  22. <style>
  23. .el-row {
  24. margin-bottom: 20px;
  25. }
  26. .el-row:last-child {
  27. margin-bottom: 0;
  28. }
  29. .el-col {
  30. border-radius: 4px;
  31. }
  32. .grid-content {
  33. border-radius: 4px;
  34. min-height: 36px;
  35. }
  36. </style>