Remove blue frame from JavaFX input field
问题 Is there a way to remove the blue frame from input filed? 回答1: The blue border you are showing is the focus border. To remove it entirely, use something like textField.setStyle("-fx-focus-color: -fx-control-inner-background ; -fx-faint-focus-color: -fx-control-inner-background ;"); or in an external css file .text-field { -fx-focus-color: -fx-control-inner-background ; -fx-faint-focus-color: -fx-control-inner-background ; } To make it the same as the unfocused text field, use .text-field