Adjusting placeholder text line height

  • blearning
    Asked on June 23, 2020 at 2:00 PM

    Hi, I need to increase the line height for my placeholder text boxes. Can you help?


  • Mike
    Replied on June 23, 2020 at 3:32 PM

    You can try using the ::placeholder selector in the custom CSS.

    Something like:

    ::placeholder {
    line-height: 1.4em;
    }

    or

    textarea::placeholder {
    line-height: 1.4em;
    }

    Adjusting placeholder text line height Image 1 Screenshot 20

  • blearning
    Replied on June 23, 2020 at 4:12 PM

    Worked perfectly! Thanks so much.