Vuetify JS 2.x卡内容Z-索引

问题描述 投票:0回答:1

我正在尝试向Vuetify JS卡组件内的.v-responsive__content元素添加一些自定义CSS。我已经在网上查看,似乎无法为此找到一个插槽,我需要手动设置此元素的z-index值,因为我正在::before组件上使用v-card来添加背景叠加层。

我在定位时遇到了麻烦,有人可以帮忙/提供建议吗?

<v-card
  class="mx-auto mb-8"
  max-width="375"
>
  <v-img
    class="white--text align-end"
    height="200"
    :src="source"
  >
    <v-card-title class="pb-0 mb-n1">Title</v-card-title>
    <v-row>
      <v-col cols="8">
        <v-card-subtitle class="white--text text-truncate py-0">Subtitle</v-card-subtitle>
      </v-col>
      <v-col class="text-right">
        <v-chip
          class="chip-custom chip-custom--primary ma-0 mr-4 mt-n2"
          color="primary"
          text-color="white"
          small
        >
          text
          <v-icon right small class="ml-1">mdi-star</v-icon>
        </v-chip>
      </v-col>
    </v-row>
  </v-img>
</v-card>
css vue.js vuetify.js nuxt.js
1个回答
0
投票

我通常将内联样式用于z-index

© www.soinside.com 2019 - 2024. All rights reserved.