Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! 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