cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

A question about textarea widght

yyizhou
1-Newbie

A question about textarea widght

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?

1.png2.png

2 REPLIES 2

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

Top Tags