<el-form-item> <el-button round color="#115e59" type="primary" class="justify-center w-[250px] space-x-2" @click="onSubmit"> 登 录 </el-button> <el-button round color="#115e59" class="w-[250px]" style="margin-left: 0" @click="onSubmit">注 册</el-button> </el-form-item>怎么让这个代码中的两个按钮之间有一个上下的间距
时间: 2024-01-17 11:02:51 浏览: 165
ios-一句代码设置UIButton的image和title的左右上下布局以及image和title的间距.zip
你可以在 `<el-button>` 标签的前面或后面添加一个空的 `<div>` 标签,然后为其设置一个 `style` 属性,指定 `margin` 或 `padding` 的值来实现上下间隔的效果。例如:
```
<el-form-item>
<div style="margin-bottom: 10px;"></div>
<el-button round color="#115e59" type="primary" class="justify-center w-[250px] space-x-2" @click="onSubmit">登录</el-button>
<div style="margin-top: 10px;"></div>
<el-button round color="#115e59" class="w-[250px]" style="margin-left: 0" @click="onSubmit">注册</el-button>
</el-form-item>
```
上述代码中,在第一个按钮前添加了一个 `margin-bottom` 为 10px 的空 `<div>`,在第二个按钮后添加了一个 `margin-top` 为 10px 的空 `<div>`,这样就实现了两个按钮之间的上下间隔效果。你可以根据自己的需要调整 `margin` 或 `padding` 的值。
阅读全文