<ion-input class="text-input" id="p" type="tel" placeholder="输入手机号码" [(ngModel)]="phnNbr" clearInput></ion-input>
如上图,只需设置class="text-input",然后设置样式如下即可:
.text-input::-webkit-input-placeholder {
color: white;
}
.text-input:-ms-input-placeholder {
color: white;
}
.text-input::-moz-placeholder {
color: white;
}
.text-input:-moz-placeholder {
color: white;
}