欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何降低輸入控件的標簽和字段之間的間距?

林子帆1年前8瀏覽0評論

以定制的Vuetify文本字段為例

(游樂場)

<template>
  <v-app>
    <v-container>
      <v-text-field
        label="label goes here"
        variant="plain"
        density="compact"
        hide-details="auto"
        color="primary"
        class="my-1"
        model-value="some text goes here"
      />
    </v-container>
  </v-app>
</template>

<style scoped>
  :deep(.v-input),
  :deep(.v-field),
  :deep(.v-label--clickable) {
    font-size: 12px;
  }

  :deep(.v-label.v-field-label) {
    font-size: 10px;
  }
</style>

標簽和內容之間的垂直間距太大

enter image description here

降低空間最好的方法是什么?我試著補充

.v-input {
    height: 4px;
    min-height: 4px;
    max-height: 4px;
  }

  .v-field {
    height: 4px;
    min-height: 4px;
    max-height: 4px;
  }

  .v-text-field {
    height: 4px;
    min-height: 4px;
    max-height: 4px;
  }

看看會發(fā)生什么,但什么都沒有改變。