import javafx.application.Application; import javafx.geometry.HPos; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.CheckBox; import javafx.scene.control.ScrollPane; import javafx.scene.control.TextArea; import javafx.scene.layout.GridPane; import javafx.scene.layout.Priority; import javafx.scene.layout.StackPane; import javafx.scene.layout.TilePane; import javafx.stage.Stage; /** * * @author Alexander Kouznetsov */ public class PaddingInsideScrollPane extends Application{ @Override public void start(Stage primaryStage) { CheckBox checkBox = new CheckBox("checkbox"); checkBox.setStyle("-fx-border-color: green;"); TilePane tilePane = new TilePane(); tilePane.getChildren().setAll(checkBox); tilePane.setStyle("-fx-padding: 100; -fx-border-color: red;"); ScrollPane scrollPane = new ScrollPane(); scrollPane.setNode(tilePane); scrollPane.setFitToWidth(true); Scene scene = new Scene(scrollPane); primaryStage.setScene(scene); primaryStage.setVisible(true); } public static void main(String[] args) { launch(args); } }