Hello,
I am trying to change the background color of the textarea using in-line css.
responseBox = new TextArea();
responseBox.setStyle("-fx-font: 14px 'Courier New';-fx-background-color: #000000;");
The background color should be black, but it remains as defult (white).
What am i doing wrong?
How do I change the color of the font within TextArea?
Gabor