1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <el-row :gutter="20">
- <el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
- <el-col :span="6" :offset="6"
- ><div class="grid-content ep-bg-purple"
- /></el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="6" :offset="6"
- ><div class="grid-content ep-bg-purple"
- /></el-col>
- <el-col :span="6" :offset="6"
- ><div class="grid-content ep-bg-purple"
- /></el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="12" :offset="6"
- ><div class="grid-content ep-bg-purple"
- /></el-col>
- </el-row>
- </template>
- <style>
- .el-row {
- margin-bottom: 20px;
- }
- .el-row:last-child {
- margin-bottom: 0;
- }
- .el-col {
- border-radius: 4px;
- }
- .grid-content {
- border-radius: 4px;
- min-height: 36px;
- }
- </style>
|