Hi, I’m trying to set the ion-input placeholder to lowercase using css when the ion-input has applied text-transform to uppercase in Ionic v4.
From official documentation
–placeholder-color: Color of the input placeholder text
–placeholder-font-style: Font style of the input placeholder text
–placeholder-font-weight: Font weight of the input placeholder text
–placeholder-opacity: Opacity of the input placeholder text
As you can see there aren’t tag for text-transform.
I have tested things like this, but nothing works.
::-webkit-input-placeholder {
text-transform: lowercase !important;
}
:-moz-placeholder {
text-transform: lowercase !important;
}
::-moz-placeholder {
text-transform: lowercase !important;
}
:-ms-input-placeholder {
text-transform: lowercase !important;
}
Anyone have any ideas?
1 post - 1 participant