Skip to main content
1-Visitor
December 14, 2017
Question

A question about textarea widght

  • December 14, 2017
  • 1 reply
  • 2100 views

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

    1 reply

    15-Moonstone
    December 14, 2017

    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

    yyizhou1-VisitorAuthor
    1-Visitor
    December 18, 2017

    Thank you