gpt4 book ai didi

css - Vuetify,文本字段旁边的对齐按钮

转载 作者:行者123 更新时间:2023-12-05 08:37:45 24 4
gpt4 key购买 nike

我有一个文本字段,在文本字段的右侧附加了一个按钮。我的问题是按钮有上边距并且与文本字段不一致。如下图所示,按钮太低了。

示例:

The button is not aligned with the text field

问题:

如何以原生方式将按钮与文本字段对齐?

我尝试将 class="mt-0"应用于按钮,但没有任何改变。

代码:

<v-row>
<v-col md="6" offset-md="3">
<v-text-field class="pt-5" placeholder="Strawberries" outlined clearable>
<!-- <template slot="append">
<v-icon>clear</v-icon>
</template> -->
<template slot="append-outer">
<v-btn dark x-large color="pink"> SEARCH </v-btn>
</template>
</v-text-field>
</v-col>
</v-row>

感谢您的帮助!

最佳答案

使用 d-flexv-row 好,因为 v-row 删除了间距和其他内容。

<div class="d-flex">
<v-text-field class="pt-5 mr-2" placeholder="Strawberries" outlined clearable></v-text-field>
<v-btn dark x-large color="pink"> SEARCH </v-btn>
</div>

v-行

enter image description here

d-flex

enter image description here

关于css - Vuetify,文本字段旁边的对齐按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64681602/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com