我試圖居中佔位符文本。它看起來集中在IOS上,但仍然左對齊在Android 4上。Sencha Touch 2:輸入佔位符未在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
}
}
我在想什麼?