Is it possible to make all GridPane\'s grid lines permanently visible without using setGridLinesVisible()?
setGridLinesVisible()
I know that setGridLinesVisible()
For every children use:
-fx-border-color: black; -fx-border-width: 0 0 1 1;
This can be achieved with the yourChildNode.setStyle(css) method for example.
yourChildNode.setStyle(css)
Should one cell contain multiple layouts wrap them in one AnchorPane and apply the CSS on the AnchorPane.
AnchorPane