我的 TextArea 周围有一个我无法摆脱的白色边框
继承人的代码:
textArea = new TextArea();
textArea.getStyleClass().add("textArea");
textArea.setWrapText(true);
和CSS:
.textArea{
-fx-background-insets: 0 0 0 0, 0, 1, 2;
-fx-background-radius: 0;
-fx-text-fill: white;
-fx-border-color: #2a2a2a;
-fx-border-width: 0;}
.textArea .content{
-fx-background-color: #2a2a2a;
-fx-border-color: #2a2a2a;
}
任何人都可以帮忙吗?