简体   繁体   中英

Changing the background-color behind the text in a textarea

How do i change the background color inside the textarea, behind the text.

Ext.create('Ext.form.FormPanel', {
    title      : 'Sample TextArea',
    width      : 400,
    bodyPadding: 10,
    renderTo   : Ext.getBody(),
    items: [{
        xtype     : 'textareafield',
        grow      : true,
        name      : 'message',
        fieldLabel: 'Message',
        anchor    : '100%'
    }]
});
{
 xtype: "textarea",
 name: "editor",
 value: "",
 fieldStyle: "background: #FFFF55 none repeat scroll 0 0 !important;"
}

Let me know this what you want

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM