Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Whether the text property which is be part of textarea widght can apply the CSS style?I try to use CSS to change the appearance of text property of textArea widght,but it not used.So,if I want to adjust the size and color of font,or I want to change the background, how can I complete it?


If you want change the color of the text area you can change the css in :
.text , set the colour red to label
.text textarea set the blue to text parameter
CSS to use :
.text {
color: red;
}
.text textarea {
color: blue;
};
Bye
Giuseppe
Thank you
