Reputation: 159
I have got this gridPane in my code and i want to give it a fixed width of 800,i tried setting style like this
grid.setStyle("width: 400px;");
But it didn't work.
Upvotes: 4
Views: 10241
Reputation: 750
In this case CSS
is not the best solution.
Try: gridPane.setPrefWidth(800);
If this doesn't work you can try:
gridPane.setMinWidth(800);
gridPane.setMaxWidth(800);
So your GridPane
is definitely 800px width
Upvotes: 2