How do i increase textarea's placeholder font size ? i tried this and it didnt work. thanks.
textarea::placeholder {
font-size: 20;
}
You forgot the px at the end. That is very important. For example, how does it know if you want px or em?
View this for more information.
textarea::placeholder {
font-size: 20px;
}
<textarea placeholder="yes"></textarea>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With