search

Home  >  Q&A  >  body text

The title is rewritten as: The Chinese translation of vuetify select placeholder color is "vuetify placeholder color in the select box"

<p>I'm trying to change the placeholder text color of a vuetify select box. Here's what I tried: </p> <pre class="brush:php;toolbar:false;"><v-select :items="items" placeholder="place" dense> </v-select> .v-text-field--placeholder { color: green !important; }</pre> <p>But it does not change the color of the placeholder text. What did I do wrong and how do I fix it? </p>
P粉647504283P粉647504283497 days ago471

reply all(1)I'll reply

  • P粉217629009

    P粉2176290092023-08-26 13:37:52

    You need to use ::placeholderSelector:

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

    reply
    0
  • Cancelreply