プレースホルダー テキストを中央に配置しようとしています。IOS では中心に見えますが、Android 4 では左揃えになっています。
/*css code is below*/
#myinput input{
text-align:center!important;
}
#myinput input::-webkit-input-placeholder{
text-align:center!important;
}
//the view (.js file) has
{
xtype: 'emailfield',
name: 'myinput',
id: 'myinput',
required: true,
placeHolder: 'myinput (optional)',
listeners: {
//some listeners are here
}
}
私は何が欠けていますか?