how to set slected row color in javafx tableview

Solutions on MaxInterview for how to set slected row color in javafx tableview by the best coders in the world

showing results for - "how to set slected row color in javafx tableview"
Jana
11 Jul 2019
1.table-row-cell:selected {
2   -fx-background-color: steelblue; 
3}
4.table-row-cell:selected .text {
5       -fx-fill: red ;
6
7}
8
Isabella
13 Sep 2018
1.table-row-cell:selected {
2   -fx-background-color: steelblue; 
3   -fx-text-background-color: red;
4}
5