user9283041
user9283041

Reputation:

vuetify select placeholder color

I am trying to change placeholder text color of vuetify select box. My attempt is as below.

<v-select
  :items="items"
   placeholder="place"
   dense>
</v-select>

.v-text-field--placeholder {
   color: green !important;
 }

But it will not change the placeholder text color. Where I was get wrong and how can I fix it?

Upvotes: 1

Views: 2743

Answers (1)

Abbas
Abbas

Reputation: 1255

You need to use the ::placeholder selector:


.v-text-field input::placeholder {
    color: green;
}

Upvotes: 3

Related Questions